This Oracle tutorial explains how to use the Oracle/PLSQL MOD function with syntax and examples.
The Oracle/PLSQL MOD function returns the remainder of m divided by n.
The syntax for the MOD function in Oracle/PLSQL is:
MOD( m, n )
Numeric value used in the calculation.
Numeric value used in the calculation.
The MOD is calculated as follows:
m - n * floor(m/n)
The MOD function returns a numeric value. The MOD function returns m if n is 0.
The MOD function can be used in the following versions of Oracle/PLSQL:
Let's look at some Oracle MOD function examples and explore how to use the MOD function in Oracle/PLSQL.
For example:
MOD(15, 4)
Output: 3
MOD(15, 0)
Output: 15
MOD(11.6, 2)
Output: 1.6
MOD(11.6, 2.1)
Output: 1.1
MOD(-15, 4)
Output: -3
MOD(-15, 0)
Output: -15