Bitwise Functions
Bitwise functions supported by e6data
BITWISE_OR( <expr>, <expr> )
> select bitwise_or(3,5);
7BITWISE_XOR( <expr>, <expr> )
> select bitwise_xor(3,5);
6BITWISE_NOT( <expr>)
> select bitwise_not(4);
-5SHIFTRIGHT ( <expr>, <n> )
> select shiftright(2, 1);
1SHIFTLEFT ( <expr>, <n> )
Last updated
