You are viewing the documentation for Blueriq 17. 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

ExpressionResultType
TRUE OR TRUE

TRUE

boolean
TRUE OR FALSETRUEboolean
FALSE OR FALSEFALSEboolean

TRUE OR ? (= UNKNOWN)

TRUEboolean
FALSE OR ? (= UNKNOWN)UNKNOWNboolean


Back to Top