Or

circle-info

The ORkeyword is used to combine two boolean conditions and will yield true if at least one condition evaluates to true.

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

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

circle-check
chevron-rightcondition OR conditionhashtag

true OR false => true

false OR true => true

true OR true => true

false OR false => false

Last updated

Was this helpful?