Getting started
User guides
Administration guides
Reference guides
Resources
Updated Aug 04, 2022
Send us feedback
bit_and
Returns the bitwise AND of all input values in the group.
bit_and(expr) [FILTER ( WHERE cond ) ]
expr: An expression that evaluates to an integral numeric.
expr
cond: An optional boolean expression filtering the rows used for aggregation.
cond
The result type matches the argument type.
> SELECT bit_and(col) FROM VALUES (3), (5) AS tab(col); 1 > SELECT bit_and(col) FILTER(WHERE col < 6) FROM VALUES (3), (5), (6) AS tab(col); 1
bit_or aggregate function
bit_xor aggregate function
some aggregate function