For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

conditionANDcondition

true AND false => false

false AND true => false

true AND true => true

false AND false => false

Last updated

Was this helpful?