Oracle REMAINDER Function


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

A few examples of the REMAINDER function in Oracle.


Copy this code and paste it in your HTML
  1. /*REMAINDER*/
  2.  
  3. SELECT REMAINDER(24, 7) FROM dual;
  4.  
  5. SELECT REMAINDER(24, 6) FROM dual;
  6.  
  7. SELECT REMAINDER(24, 5) FROM dual;
  8.  
  9. SELECT REMAINDER(627, 101) FROM dual;
  10.  
  11. SELECT REMAINDER(-58, -10) FROM dual;

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.