And

circle-info

The AND keyword is used to combine two boolean conditions where both conditions must be true to yield a positive result.

This is the Conjunction within the boolean logical operationsarrow-up-right.

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

circle-check
chevron-rightconditionANDconditionhashtag

true AND false => false

false AND true => false

true AND true => true

false AND false => false

Last updated

Was this helpful?