pmod
function
Applies to: Databricks SQL Databricks Runtime
Returns the positive remainder after dividend / divisor
.
Arguments
dividend
: An expression that evaluates to a numeric.divisor
: An expression that evaluates to a numeric.
Returns
If both dividend
and divisor
are of DECIMAL
the result matches the type of divisor
.
In all other cases a DOUBLE.
If divisor
is 0 the function raises a DIVIDE_BY_ZERO error.