BITAND(1010, 1100) : BITAND « Numeric Math Functions « Oracle PL / SQL






BITAND(1010, 1100)



SQL> select BITAND(1010, 1100) from dual;

BITAND(1010,1100)
-----------------
               64

SQL>

           
       








Related examples in the same category

1.BITAND(x, y): Returns the result of performing a bitwise AND on x and y
2.BITAND(1, 0)
3.BITAND(0, 1)
4.BITAND(1, 1)