MODULO

Returns the remainder of the first number divided by the second.

Syntax

MODULO(x, y)

Arguments

NameTypeDescriptionDefault Value

x

numeric

y

numeric

Returns

[same as input]

Examples

xyOutput

5

2

1

5.3

2.2

0.8999999999999995

5

-2

1

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 x, y,
        MODULO(x, y) AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET x = 5,
        y = 2
    WHERE time_filter()
    LIMIT 1;

Query result

xyOutput

5

2

1

Last updated