MOD#
Functionality:#
This Oracle function (modulus) will return the remainder of one number divided by another.Parameters:#
NUMBER | The original number |
DIVISOR | The number being used as the divisor |
Returns: #
NumberErrors: #
NoneExample:#
mod(11,4) and mod(11,-4) will return 3
mod(-11,4) and mod(-11,-4) will return -3