ReferenceSQL ReferenceSQL FunctionsfunctionsXORVersion: current [24.2.x]On this pageXORCategories: BitwiseXORReturns the bitwise XOR of two integers.SyntaxXOR(expression1 int32, expression2 int32) → int32expression1: The integer input.expression2: The integer input.ExamplesXOR exampleSELECT XOR(1, 1)-- 0