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_XNOR

Applies to ✅ Open Source Edition   ✅ Express Edition   ✅ Professional Edition   ✅ Enterprise Edition

The BIT_XNOR() function produces the bitwise XNOR (exclusive NOR) operation.

SELECT bit_xnor(5, 3);
create.select(bitXNor(5, 3)).fetch();

The result being

+----------+
| bit_xnor |
+----------+
|       -7 |
+----------+

Dialect support

This example using jOOQ:

bitXNor(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, HANA, INFORMIX, SNOWFLAKE, TERADATA
bitnot(bitxor(5, 3))

-- DUCKDB
~xor(5, 3)

-- EXASOL
bit_not(bit_xor(5, 3))

-- FIREBIRD
bin_not(bin_xor(5, 3))

-- H2
bitxnor(5, 3)

-- HSQLDB
((0 - bitxor(5, 3)) - 1)

-- ORACLE
((0 - bitand(
  ((0 - bitand(5, 3)) - 1),
  ((5 + 3) - bitand(5, 3))
)) - 1)

-- SQLITE
~((~((5 & 3)) & (5 | 3)))

-- TRINO
bitwise_not(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!

The jOOQ Logo