MOD

Computes the modulus (remainder) of the first input divided by the second input.

Syntax

MOD(N, M)

Arguments

N

Type: numeric

A numeric value representing the dividend.

M

Type: numeric

A numeric value representing the divisor.

Returns

Type: same as input

The remainder of N divided by M.


Examples

Transformation job example

SQL

CREATE JOB function_operator_example
    ADD_MISSING_COLUMNS = true	
AS INSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data 
  MAP_COLUMNS_BY_NAME
    SELECT 
        MOD(2.5, 2.5) AS mod_example
    FROM default_glue_catalog.upsolver_samples.orders_raw_data 
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

Last updated