BITAND
Learn how to use the BITAND bit function in PlaidCloud Lakehouse. Returns the bitwise AND of two numeric values - see syntax, examples, and output.
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 │
└───┘