RADIANS

Converts a given angle in degrees to its value in radians.

Syntax

RADIANS(X)

Arguments

X

Type: numeric

A numeric value representing an angle in degrees.

Returns

Type: double

X number of degrees expressed as a number in radians.

Examples

XOutput

1

0.017453292519943295

1 + 1

0.03490658503988659

0

0.0

1.1

0.019198621771937624

-1

-0.017453292519943295

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 
        RADIANS(1) AS radians_example
    FROM default_glue_catalog.upsolver_samples.orders_raw_data 
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

radians_example

0.017453292519943295

Last updated