sql-referencesql-functionsfunctionsXORVersion: 0.0.1On this pageXORCategories: BitwiseXORReturns the bitwise XOR of two integers.SyntaxXOR(expression1 int32, expression2 int32) → int32expression1: The integer input.expression2: The integer input.Examples{{< codeheader "XOR example" >}}SELECT XOR(1, 1)-- 0