Last updated 4 months ago
Was this helpful?
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 .
This function is SQL compatible. For more information about SQL compatibility, see our .
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