BOOL_AND Function
Syntax
BOOL_AND ( [DISTINCT | ALL] expression )
Arguments
- expression
-
The target column or expression that the function operates on. This expression must have a BOOLEAN or integer data type. The return type of the function is BOOLEAN.
- DISTINCT | ALL
-
With the argument DISTINCT, the function eliminates all duplicate values for the specified expression before calculating the result. With the argument ALL, the function retains all duplicate values. ALL is the default. See DISTINCT Support for Bit-Wise Aggregations.