The jOOQ User Manual : SQL building : Column expressions : Bitwise functions : BIT_OR | previous : next |
New versions: Dev (3.15) | Latest (3.14) | 3.13 | 3.12 | 3.11 | 3.10 | 3.9 | 3.8 | Old versions: 3.7 | 3.6 | 3.5 | 3.4 | 3.3
BIT_OR
Applies to ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The BIT_OR()
function produces the bitwise OR
operation.
SELECT bit_or(5, 2);
create.select(bitOr(5, 2)).fetch();
The result being
+--------+ | bit_or | +--------+ | 7 | +--------+
Dialect support
This example using jOOQ:
bitOr(5, 2)
Translates to the following dialect specific expressions:
-- ASE, CUBRID, MARIADB, MYSQL, POSTGRES, SQLITE, SQLSERVER, SYBASE (5 | 2) -- DB2, H2, HSQLDB bitor(5, 2) -- FIREBIRD bin_or(5, 2) -- ORACLE ((5 + 2) - bitand(5, 2)) -- ACCESS, AURORA_MYSQL, AURORA_POSTGRES, BIGQUERY, COCKROACHDB, DERBY, HANA, IGNITE, INFORMIX, MEMSQL, REDSHIFT, SNOWFLAKE, -- SQLDATAWAREHOUSE, TERADATA, VERTICA /* UNSUPPORTED */
(These are currently generated with jOOQ 3.15, see #10141)
Feedback
Do you have any feedback about this page? We'd love to hear it!