MOD: If there is no remainder, the function returns a zero
SQL>
SQL> --MOD: If there is no remainder, the function returns a zero.
SQL>
SQL> SELECT MOD(2200, 300) AS ODD, MOD(2100, 300) AS EVEN FROM Dual;
ODD EVEN
---------- ----------
100 0
Related examples in the same category