TAN

Evaluates the tangent of the given number of radians.

Syntax

TAN(X)

Arguments

X

Type: numeric

A numeric value representing an angle in radians.

Returns

Type: double

The tangent of X.

Examples

XOutput

1

1.5574077246549023

-1

-1.5574077246549023

0

0

0.5

0.5463024898437905

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

Query result

tan_example

1.5574077246549023

Last updated