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