Back to Starrocks

bitor

docs/en/sql-reference/sql-functions/bit-functions/bitor.md

4.1.0652 B
Original Source

bitor

Returns the bitwise OR of two numeric expressions.

Syntax

Haskell
BITOR(x,y);

Parameters

  • x: This expression must evaluate to any of the following data types: TINYINT, SMALLINT, INT, BIGINT, LARGEINT.

  • y: This expression must evaluate to any of the following data types: TINYINT, SMALLINT, INT, BIGINT, LARGEINT.

x and y must agree in data type.

Return value

The return value has the same type as x. If any value is NULL, the result is NULL.

Examples

Plain
mysql> select bitor(3,0);
+-------------+
| bitor(3, 0) |
+-------------+
|           3 |
+-------------+
1 row in set (0.00 sec)