Comment on page
MIN
Computes the minimum of all input values.
MIN(X)
Type:
numeric
The value to return.
Type:
double
Returns the minimum of all input values.
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
LOWER(ordertype) as ordertype,
MIN(nettotal) as mintotal
FROM default_glue_catalog.upsolver_samples.orders_raw_data
WHERE $commit_time BETWEEN run_start_time() - PARSE_DURATION('1d') AND run_end_time()
GROUP BY 1
LIMIT 2;
ordertype | mintotal |
---|---|
pickup | 0 |
shipping | 0 |
Last modified 1yr ago