Bitwise
| Function Name | Description |
|---|---|
| BIT_AND | Returns the bitwise AND of non-NULL input values. |
| BIT_OR | Returns the bitwise OR of non-NULL input values. |
| LSHIFT | Shifts the bits of the numeric expression to the left. |
| RSHIFT | Shifts the bits of the numeric expression to he right. |
| XOR | Returns the bitwise XOR of two integers. |