BITXOR
Returns the bitwise XOR of two numeric values.
Analyze Syntax
func.bitxor(<x>, <y>)
Analyze Examples
func.bitxor(12, 10)
┌───┐
│ 6 │
└───┘
SQL Syntax
BITXOR(<x>, <y>)
SQL Examples
SELECT BITXOR(12, 10);
┌───┐
│ 6 │
└───┘
Returns the bitwise XOR of two numeric values.
func.bitxor(<x>, <y>)
func.bitxor(12, 10)
┌───┐
│ 6 │
└───┘
BITXOR(<x>, <y>)
SELECT BITXOR(12, 10);
┌───┐
│ 6 │
└───┘