BITOR
Computes an OR
operation on the bits of expression1
and expression2
.
SQL syntax
BITOR (Expression1
,Expression2
)
Parameters
BITOR
has the following parameters:
Parameter | Description |
---|---|
|
|
Description
-
This function returns
TT_INTEGER
NOT
NULL
. -
The
BITOR
function is rewritten into (expression1
|
expression2
). See the bitwiseOR
operator for more information.