Stay informed about any major changes. Click here to subscribe
Comparison operators
SQL operators can be used in conditions. Expression
Builder contains a list of operators you can include in a condition
and you can use it to simplify the creation of conditions.
Operator
Description
Grid pane
=
Equal.
= 'Smith'
<>
!=
Not equal to.
<> 'Active'
>
Greater than.
> '01 Jan 2024'2
<
Less than.
< 100
>=
!<
Greater than or equal to.
>= 'T'
<=
!>
Less than or equal to.
<= '01 Jan 2024' 2
BETWEEN expr1
AND expr2
Tests range of values.
BETWEEN
'01 Jan 2024'
AND
'31 Dec 2023'2
IS [NOT] NULL
Tests whether contents of column is
null.
IS NULL
[NOT] LIKE
Performs pattern matching.
LIKE ('MAC%')
ANY (SOME)
Tests whether one or more rows in
the result set of a subquery meet the specified condition.
<> ANY (subquery)
ALL
Tests whether all rows in the result
set of a subquery meet the specified condition.