BITAND (Lakehouse v2)
Returns the bitwise AND of two numeric values.
Analyze Syntax
Section titled “Analyze Syntax”func.bitand(<x>, <y>)Analyze Examples
Section titled “Analyze Examples”func.bitand(12, 10)
┌───┐│ 8 │└───┘SQL Syntax
Section titled “SQL Syntax”BITAND(<x>, <y>)SQL Examples
Section titled “SQL Examples”SELECT BITAND(12, 10);
┌───┐│ 8 │└───┘