Relational Operators

 

Relational operators consist of two values of the same data type which are compared with one another returning a true/false value. The result (return value) is the Boolean value true or false. Example: Page()<>1

 

Operator

Meaning

Data types

>

Greater

string, number, date

>=

greater or equal

string, number, date

<

less than

string, number, date

<=

less than or equal

string, number, date

=

Equal

string, number, date

==

Equal

string, number, date

<>

not equal

string, number, date

!=

not equal

string, number, date