You are viewing the documentation for Blueriq 15. Documentation for other versions is available in our documentation directory.
AND
Returns TRUE if all its arguments evaluate to TRUE; it returns FALSE if one or more arguments evaluate to FALSE.
Syntax
argument1 AND argument2 [AND ...]
Inputs
- argument1 - The first boolean condition that you want to evaluate.
- argument2 - The first boolean condition that you want to evaluate.
- [AND …] - Additional boolean conditions that you want to evaluate. (optional)
Return type
- boolean
Examples
Expression | Result | Type |
---|---|---|
TRUE AND TRUE | TRUE | boolean |
TRUE AND FALSE | FALSE | boolean |
TRUE AND ? (= UNKNOWN) | UNKNOWN | boolean |
FALSE AND ? | FALSE | boolean |
Overview
Content Tools