Bitwise Functions
Bitwise functions supported by e6data
BITWISE_OR( <expr>, <expr> )
Returns the bitwise OR of two numeric expressions.
BITWISE_XOR( <expr>, <expr> )
Returns the bitwise XOR of two numeric expressions.
BITWISE_NOT( <expr>)
Returns the bitwise negation of a numeric expression.
SHIFTRIGHT ( <expr>, <n> )
Alternate syntax: <expr>
>>
n;
Returns a bitwise signed right shifted by n
bits.
SHIFTLEFT ( <expr>, <n> )
Alternate syntax: <expr>
<<
n;
Returns a bitwise signed left shifted by n
bits.
Last updated