Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 453 Bytes

File metadata and controls

21 lines (15 loc) · 453 Bytes
description
Returns the bitwise XOR of two integers.

XOR

Syntax

XOR(expression1 int32, expression2 int32) → int32

  • expression1: The integer input.
  • expression2: The integer input.

Examples

{% code title="XOR example" %}

SELECT XOR(1, 1)
-- 0

{% endcode %}