BITOR
Learn how to use the BITOR bit function in PlaidCloud Lakehouse. Returns the bitwise OR of two numeric values - see syntax, examples, and output.
Returns the bitwise OR of two numeric values.
Analyze Syntax
func.bitor(<x>, <y>)
Analyze Examples
func.bitor(12, 10)
┌────┐
│ 14 │
└────┘
SQL Syntax
BITOR(<x>, <y>)
SQL Examples
SELECT BITOR(12, 10);
┌────┐
│ 14 │
└────┘