&
(ampersand sign) operator
Applies to: Databricks SQL
Databricks Runtime
Returns the bitwise AND of expr1
and expr2
.
expr1 & expr2
expr1
: An integral numeric type expression.expr2
: An integral numeric type expression.
The result type matches the widest type of expr1
and expr2
.
> SELECT 3 & 5;
1