REMAINDER Function [Numeric]

Returns the remainder when one whole number is divided by another.

Syntax

REMAINDERdividend, divisor )

Parameters

Parameter

Description

dividend

The dividend, or numerator of the division.

divisor

The divisor, or denominator of the division.

Returns

INTEGER

NUMERIC

Remarks

REMAINDER is the same as the MOD function.

Standards and Compatibility

  • SQL—Vendor extension to ISO/ANSI SQL grammar.

  • Sybase—Not supported in Adaptive Server Enterprise. The % (modulo) operator and the division operator can be used to produce a remainder.

Example

The following statement returns the value 2:

SELECT REMAINDER( 5, 3 ) FROM iq_dummy
Related reference
MOD Function [Numeric]