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 |
---|---|
|
Exclusive |
Description
-
This function returns
TT_INTEGER
NOT
NULL
. -
The
BITXOR
function is rewritten into (expression1
^
expression2
). See the bitwise exclusiveOR
operator for more information.