Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.3 KB

File metadata and controls

59 lines (41 loc) · 1.3 KB
description
Computes the tangent of a value in radians.

TAN

Syntax

TAN(numeric_expression double) → double

  • numeric_expression: The number in radians.

Examples

{% code title="TAN example" %}

SELECT TAN(180.8)
-- -6.259341891872157

{% endcode %}

TAN(numeric_expression int64) → double

  • numeric_expression: The number in radians.

Examples

{% code title="TAN example" %}

SELECT TAN(1200)
-- -0.08862461268886584

{% endcode %}

TAN(numeric_expression int32) → double

  • numeric_expression: The number in radians.

Examples

{% code title="TAN example" %}

SELECT TAN(1200)
-- -0.08862461268886584

{% endcode %}

TAN(numeric_expression float) → double

  • numeric_expression: The number in radians.

Examples

{% code title="TAN example" %}

SELECT TAN(180.8)
-- -6.259341891872157

{% endcode %}