BITOR
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 │
└────┘
Returns the bitwise OR of two numeric values.
func.bitor(<x>, <y>)
func.bitor(12, 10)
┌────┐
│ 14 │
└────┘
BITOR(<x>, <y>)
SELECT BITOR(12, 10);
┌────┐
│ 14 │
└────┘