Go to the first, previous, next, last section, table of contents.


Comparison Operators

These comprise the following: >, greater than; <, less than; >=, greater than or equals; <=, less than or equals; =, equals; <> not equals. These perform the respective comparison and produce a boolean data type of true or false. Can be used with numeric, string and date operands. The boolean data type is interchangeable with the numeric data type, but in general can only subsequently be used by the boolean operators or the conditional operator.


Go to the first, previous, next, last section, table of contents.