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