The AND keyword is used to combine two boolean conditions where both conditions must be true to yield a positive result.
AND
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.
true
condition
true AND false => false
true AND false
false AND true => false
false AND true
true AND true => true
true AND true
false AND false => false
false AND false
Last updated 6 months ago
Was this helpful?