Contents Index RAND function [Numeric] REPEAT function [String]

ASA SQL Reference
  SQL Functions
    Alphabetical list of functions

REMAINDER function [Numeric]


Function 

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

Syntax 

REMAINDER ( dividenddivisor )

Parameters 

dividend    The dividend, or numerator of the division.

divisor    The divisor, or denominator of the division.

Standards and compatibility 
See also 

MOD function [Numeric]

Example 

The following statement returns the value 2.

SELECT REMAINDER( 5, 3 )

Contents Index RAND function [Numeric] REPEAT function [String]