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