Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

MOD(x, y)

SQL> SQL> --MOD(x, y):Returns the remainder when x is divided by y. SQL> SQL> select MOD(8, 3) from dual;   MOD(8,3) ----------          2 SQL>