BITXOR

Computes an exclusive OR operation on the bits of expression1 and expression2.

SQL syntax

BITXOR (Expression1, Expression2)

Parameters

BITXOR has the following parameters:

Parameter Description

Expression1

Expression2

Exclusive OR operation computed on the bits of Expression1 and Expression2.

Description

  • This function returns TT_INTEGER NOT NULL.

  • The BITXOR function is rewritten into (expression1 ^expression2). See the bitwise exclusive OR operator for more information.