BITAND(x, y): Returns the result of performing a bitwise AND on x and y : BITAND « Numeric Math Functions « Oracle PL / SQL






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

1.BITAND(1, 0)
2.BITAND(0, 1)
3.BITAND(1010, 1100)
4.BITAND(1, 1)