Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 711 Bytes

File metadata and controls

24 lines (18 loc) · 711 Bytes
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_AND

Syntax

BOOL_AND(bool_expression1 boolean, bool_expression2 boolean) → boolean

  • bool_expression1: Boolean input expression.
  • bool_expression2: Boolean input expression.

Examples

{% code title="BOOL_AND example" %}

SELECT BOOLEANAND(TRUE, FALSE)
-- False

{% endcode %}