description |
---|
Computes the boolean AND of two boolean expressions. Returns TRUE if both expressions evaluate to TRUE. Returns FALSE if one or both expression(s) evaluate(s) to FALSE. |
- bool_expression1: Boolean input expression.
- bool_expression2: Boolean input expression.
Examples
{% code title="BOOL_AND example" %}
SELECT BOOLEANAND(TRUE, FALSE)
-- False
{% endcode %}