Skip to main content



Relational

OperatorCompatible typesDescription
>Integer, Decimal, DateTime, TextReturns a boolean value indicating whether lhs is greater than rhs: ** ** var x = #1/1/2002# > #1/10/2002#;
>=Integer, Decimal, DateTime, TextReturns a boolean value indicating whether lhs is greater than or equal to rhs: ** ** var x = 45 >= 45.1;
**Integer, Decimal, DateTime, TextReturns a boolean value indicating whether lhs is less than rhs: ** ** var x = 'foo' < 'bar';
<=Integer, Decimal, DateTime, TextReturns a boolean value indicating whether lhs is less than or equal to rhs: ** ** var x = 1 <= 99;