Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

BITAND(x, 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>