Relational
Operator | Compatible types | Description |
> | Integer, Decimal, DateTime, Text | Returns a boolean value indicating whether lhs is greater than rhs: ** ** var x = #1/1/2002# > #1/10/2002#; |
>= | Integer, Decimal, DateTime, Text | Returns a boolean value indicating whether lhs is greater than or equal to rhs: ** ** var x = 45 >= 45.1; |
** | Integer, Decimal, DateTime, Text | Returns a boolean value indicating whether lhs is less than rhs: ** ** var x = 'foo' < 'bar'; |
<= | Integer, Decimal, DateTime, Text | Returns a boolean value indicating whether lhs is less than or equal to rhs: ** ** var x = 1 <= 99; |