MODULO
Returns the remainder of the first number divided by the second.
Syntax
MODULO(x, y)
Arguments
Name
Type
Description
Default Value
x
numeric
y
numeric
Returns
The same as the input.
Examples
x
y
Output
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 $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
Query result
x
y
Output
5
2
1
Last updated