BXOR Function

Returns the bitwise logical EXCLUSIVE OR of two arguments.

Category: Bitwise Logical Operations
Returned data type: DOUBLE

Syntax

Arguments

expression-1, expression-2

specifies any valid expression that evaluates to a numeric value.

Range between 0 and (232)–1 inclusive
Data type DOUBLE
See <sql-expression>
FedSQL Expressions

Example

The following statement illustrates the BXOR function:
Statements
Results
select bxor(128,64);
192