CEIL

Rounds the given input up to the nearest integer.

This is an alias for the CEILING function.

Syntax

CEIL(X)

Arguments

X

Type: numeric

A numeric value.

Returns

Type: same as input

X rounded up to the nearest integer.


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 
        orderid,
        nettotal,
        CEIL(nettotal) AS ceil_nettotal
    FROM default_glue_catalog.upsolver_samples.orders_raw_data 
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 3;

Query result

Last updated