And

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 operations.

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

Returns a Yes/No value that indicates if both conditions evaluate to true.

conditionANDcondition

true AND false => false

false AND true => false

true AND true => true

false AND false => false

Last updated