BITAND(1010, 1100) : BITAND « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- BITAND
BITAND(1010, 1100)
SQL> select BITAND(1010, 1100) from dual;
BITAND(1010,1100)
-----------------
64
SQL>
Related examples in the same category