MODULO
Last updated
Last updated
Returns the remainder of the first number divided by the second.
MODULO(x, y)
x
numeric
y
numeric
The same as the input.
5
2
1
5.3
2.2
0.8999999999999995
5
-2
1
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;
5
2
1