COS

Evaluates the cosine of the given number of radians.

Syntax

COS(X)

Arguments

X

Type: numeric

A numeric value representing an angle in radians.

Returns

Type: double

The cosine of X.

Examples

XOutput

1

0.5403023058681398

-1

0.5403023058681398

0

1

0.5

0.8775825618903728

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 
        COS(1) AS cos_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

cos_example

0.5403023058681398

Last updated