Or

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

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

Returns a Yes/No value that indicates if at least one condition evaluates to true.

condition OR condition

true OR false => true

false OR true => true

true OR true => true

false OR false => false

Last updated