Categories: Conditional
BOOL_OR
Computes the boolean OR of two boolean expressions. Returns TRUE if one or both expressions evaluate to TRUE. Returns FALSE if both expressions evaluate to FALSE.
Syntax
BOOL_OR(bool_expression1 boolean, bool_expression2 boolean) → boolean
- bool_expression1: Boolean input expression.
- bool_expression2: Boolean input expression.
Examples
BOOL_OR exampleSELECT BOOLEANOR(TRUE, FALSE)
-- True
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.