2 >= 1 AND 2 = 1
Interpreted as "False".
Logical Operations (AND, OR, NOT)
This manual is in pilot operation.
|
AND
Returns the logical conjunction of two values. That is, a AND b is "True" only if both a and b are "True".
OR
Returns the logical disjunction of two values. That is, a OR b is "True" if either a or b is "True".
2 >= 1 OR 2 = 1
Interpreted as "True".
NOT
Returns the logical negation of a value. That is, NOT a is "True" when a is "False" and "False" when a is "True".
NOT 2 = 1
Interpreted as "True".
⚠ AND, OR, NOT operations will interpret non-boolean values as booleans after converting them to boolean type.