11. Report-Writer Expressions and Formats : Operations : Comparison Operators
 
Share this page                  
Comparison Operators
A comparison operator is a binary operator that takes two expressions as operands. Both expressions must be of the same type--numeric, string, or date. The following operators are recognized:
Operator
Description
=
equal to
!= or <>
not equal to
>
greater than
>=
greater than or equal to
<
less than
<=
less than or equal to
All comparisons are of equal precedence. When comparisons involving character strings are made, all blanks are ignored.