Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » SQL Anywhere Server - SQL Reference » Using SQL » SQL functions » Alphabetical list of functions

 

MOD function [Numeric]

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

Syntax
MOD( dividend, divisor )
Parameters
  • dividend   The dividend, or numerator of the division.

  • divisor   The divisor, or denominator of the division.

Remarks

Division involving a negative dividend gives a negative or zero result. The sign of the divisor has no effect.

See also
Standards and compatibility
  • SQL/2003   SQL foundation feature outside of core SQL.

Example

The following statement returns the value 2.

SELECT MOD( 5, 3 );