You are viewing the documentation for Blueriq 16. Documentation for other versions is available in our documentation directory.
OR
Returns TRUE if at least one of its arguments evaluates to TRUE; it returns FALSE if none of the arguments evaluate to TRUE.
Syntax
argument1 OR argument2 [OR ...]
Input
- argument1 - The first boolean condition that you want to evaluate. argument2 - The first boolean condition that you want to evaluate. [OR …] - Additional boolean conditions that you want to evaluate.
Return type
- boolean
Examples
Expression | Result | Type |
---|---|---|
TRUE OR TRUE | TRUE | boolean |
TRUE OR FALSE | TRUE | boolean |
FALSE OR FALSE | FALSE | boolean |
TRUE OR ? (= UNKNOWN) | TRUE | boolean |
FALSE OR ? (= UNKNOWN) | UNKNOWN | boolean |
Overview
Content Tools