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

Expression1

Expression2

OR operation computed on the bits of Expression1, Expression2.

Description

  • This function returns TT_INTEGER NOT NULL.

  • The BITOR function is rewritten into (expression1 | expression2). See the bitwise OR operator for more information.