BITAND(x, y): Returns the result of performing a bitwise AND on x and y
SQL> -- BITAND(x, y): Returns the result of performing a bitwise AND on x and y.
SQL>
SQL> select BITAND(0, 0) from dual;
BITAND(0,0)
-----------
0
SQL>
Related examples in the same category