Oracle BITAND Function with Examples


/ Published in: SQL
Save to your folder(s)

A few examples of the Oracle BITAND function.


Copy this code and paste it in your HTML
  1. /*
  2. BITAND
  3. */
  4.  
  5. --Example 1
  6. SELECT BITAND(10, 3)
  7. FROM dual;
  8.  
  9. --Example 2
  10. SELECT BITAND(10, 4)
  11. FROM dual;
  12.  
  13. --Example 3
  14. SELECT BITAND(451, 68)
  15. FROM dual;
  16.  
  17. --Example 4
  18. SELECT BITAND(-203, 14)
  19. FROM dual;

URL: http://www.databasestar.com/oracle-bitand/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.