You can use the following comparison operators:
Option 1 |
Option 2 |
Option 3 |
Description |
< |
LT |
Less than | |
<= |
=< |
LE |
Less than or equal to |
= |
EQ |
Equal to | |
> |
GT |
Greater than | |
>= |
=> |
GE |
Greater than or equal to |
>< |
<> |
NE |
Not equal to |
For example, you can make the following comparisons:
Length = 5
Length < 5
Length <= 5
Length > 10
Length >= 10