Logical operator
A logical operator is used to combine two conditions. The available operators are:
- NOT: Reverses the result of a condition.
- AND: Joins two conditions and returns TRUE only when both conditions are true.
- OR: Joins two conditions and returns TRUE when either of the conditions is true.
Operators are evaluated in the order listed above. You can use brackets to change the evaluation order of a logical expression.