Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 663 Bytes

File metadata and controls

34 lines (26 loc) · 663 Bytes
description
Computes the arcsine (inverse sine) of a value in radians.

ASIN

Syntax

ASIN(numeric_expression NUMERIC) → FLOAT

  • numeric_expression: The number in radians. This must be DOUBLE, INTEGER, or FLOAT.

Examples

{% code title="ASIN example" %}

SELECT ASIN(0)
-- 0.0

{% endcode %}

{% code title="ASIN example" %}

SELECT ASIN(1)
-- 1.5707963267948966

{% endcode %}

{% code title="ASIN example" %}

SELECT ASIN(-1)
-- -1.5707963267948966

{% endcode %}