Comment on page
Logical-and &, and
Operator: & , and
The logical operator
&
(and
) checks if two conditions both evaluate to true.
The operators &
and and
can both be used and are exactly the same.If used together with the logical
or
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.
The result is a Yes/No value, depending on the check
- if
Condition1
evaluates totrue
ANDCondition2
evaluates totrue
, only thenYes
is returned. - all other evaluations result in
No
Last modified 1yr ago