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