BITXOR

Learn how to use the BITXOR bit function in PlaidCloud Lakehouse. Returns the bitwise XOR of two numeric values - see syntax, examples, and output.

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