The ORkeyword is used to combine two boolean conditions and will yield true if at least one condition evaluates to true.
OR
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.
true
condition
true OR false => true
true OR false
false OR true => true
false OR true
true OR true => true
true OR true
false OR false => false
false OR false
Last updated 3 years ago
Was this helpful?