MOD
Returns the remainder of a division operation.
Returns the remainder of a division operation.
Behavior type
ImmutableSyntax
MOD( expression1, expression2 )
Arguments
expression1
- Resolves to a numeric data type that specifies the dividend.
expression2
- Resolves to a numeric data type that specifies the divisor.
Computation rules
When computing MOD(
expression1
,
expression2
), the following rules apply:
-
If either
expression1
orexpression2
is the null value, then the result is the null value. -
If
expression2
is zero, then an exception condition is raised: data exception — division by zero. -
Otherwise, the result is the unique exact numeric value
R
with scale 0 (zero) such that all of the following are true:-
R
has the same sign asexpression2
. -
The absolute value of
R
is less than the absolute value ofexpression1
. -
expression2
=expression1
*K
+R
for some exact numeric valueK
with scale 0 (zero).
-
Examples
SELECT MOD(9,4);
mod
-----
1
(1 row)
SELECT MOD(10,3);
mod
-----
1
(1 row)
SELECT MOD(-10,3);
mod
-----
-1
(1 row)
SELECT MOD(-10,-3);
mod
-----
-1
(1 row)
SELECT MOD(10,-3);
mod
-----
1
(1 row)
=> SELECT MOD(6.2,0);
ERROR 3117: Division by zero