Simple Comparison Conditions
Comparison conditions compare one expression with another.
You can use these comparison operators:
Syntax
expr { > | >= | < | <= | = | != | ^= | <> } expr
Arguments
expr
can be any expression.
Examples
5 > 3
is true, 4 != 5
is true, 6 >= 9
is false.