CBRT

Computes the cube root of the given input.

Syntax

CBRT(X)

Arguments

X

Type: numeric

A numeric value.

Returns

Type: double

The cube root of X.

Examples

XOutput

1

1

1 + 1

1.2599210498948732

0

0

1.1

1.0322801154563672

-1

-1

-1.1

-1.0322801154563672

-1 - 5

-1.8171205928321397

0.1

0.4641588833612779

-0.1

-0.4641588833612779

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 
        CBRT(2) AS cbrt_example
    FROM default_glue_catalog.upsolver_samples.orders_raw_data 
    WHERE time_filter()
    LIMIT 1;

Query result

cbrt_example

1.2599210498948732

Last updated