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