Skip to content

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
└───┘