Available in versions: Dev (3.19) | Latest (3.18) | 3.17 | 3.16 | 3.15 | 3.14 | 3.13 | 3.12 | 3.11 | 3.10 | 3.9
BIT_XOR
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The BIT_XOR()
function produces the bitwise XOR
(exclusive OR
) operation.
SELECT bit_xor(5, 3);
create.select(bitXor(5, 3)).fetch();
The result being
+---------+ | bit_xor | +---------+ | 6 | +---------+
Dialect support
This example using jOOQ:
bitXor(5, 3)
Translates to the following dialect specific expressions:
-- ASE, AURORA_MYSQL, BIGQUERY, MARIADB, MEMSQL, MYSQL, SQLDATAWAREHOUSE, SQLSERVER, SYBASE (5 ^ 3) -- AURORA_POSTGRES, COCKROACHDB, POSTGRES, REDSHIFT, VERTICA, YUGABYTEDB (5 # 3) -- DB2, H2, HANA, HSQLDB, INFORMIX, SNOWFLAKE, TERADATA bitxor(5, 3) -- DUCKDB xor(5, 3) -- EXASOL bit_xor(5, 3) -- FIREBIRD bin_xor(5, 3) -- ORACLE bitand( ((0 - bitand(5, 3)) - 1), ((5 + 3) - bitand(5, 3)) ) -- SQLITE (~((5 & 3)) & (5 | 3)) -- TRINO bitwise_xor(5, 3) -- ACCESS, DERBY /* UNSUPPORTED */
(These are currently generated with jOOQ 3.19, see #10141), or translate your own on our website
Feedback
Do you have any feedback about this page? We'd love to hear it!