Comparison Operators:
|
Expression |
Result |
|
A > B |
TRUE if A greater than B. |
|
A >= B |
TRUE If A greater than or equal to B. |
|
A < B |
TRUE if A less than B. |
|
A <= B |
TRUE if A less than or equal to B. |
|
A eq B |
TRUE if A equal as number to B. |
|
A <> B |
TRUE if A not equal as number to B. |
|
A streq B |
TRUE if A is same string as B. See also String Values. |
|
A strneq B |
TRUE if A is not the same string as B. See also String Values. |