Operators that can be used only in conditional expressions
The following operators can be used only in conditional expressions
(for example, the IF
command):
- =
- Compare the two operands for equality.
- ¬=
- Compare the two operands for inequality.
<
- Determines whether the left operand is less than the right operand.
>
- Determines whether the left operand is greater than the right operand.
<=
- Determines whether the left operand is less than or equal to the right operand.
>=
- Determines whether the left operand is greater than or equal to the right operand.
- &
- Logical "and" operation.
- |
- Logical "or" operation.