You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.
AND
This function 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