SQRT

Computes the square root of the given input.

Syntax

SQRT(X) 

Arguments

X

Type: numeric

A numeric value.

Returns

Type: double

The square root of X as a double.

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 
        SQRT(4) AS sqrt_example
    FROM default_glue_catalog.upsolver_samples.orders_raw_data 
    WHERE time_filter()
    LIMIT 1;

Query result

Last updated