Logical-or |, or
Operator: | , or
The logical operator |
(or
) checks if at least one of two conditions evaluates to true.
The operators |
and or
can both be used and are exactly the same.
If used together with the logical and
operator, the precedence is important: and
takes precedence over or
. We strongly advice to use (parentheses) to correctly group these logical statements.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Yes/No value, depending on the check
If
Condition1
andCondition2
both evaluate tofalse
, thenNo
is returned.if
Condition1
orCondition2
evaluates totrue
, thenYes
is returned.
Last updated