Categories: Math
ASIN
Computes the arcsine (inverse sine) of a value in radians
Syntax
ASIN(numeric_expression NUMERIC) → FLOAT
- numeric_expression: The number in radians. This must be DOUBLE, INTEGER, or FLOAT.
Examples
ASIN exampleSELECT ASIN(0)
-- 0.0
SELECT ASIN(1)
-- 1.5707963267948966
SELECT ASIN(-1)
-- -1.5707963267948966