ASIN
Calculates the arcsine of a value in radians.
Syntax
ASIN(<value>)
Parameters
Parameter | Description | Supported input type |
---|---|---|
<value> | The number that the arcsine function is applied to. | DOUBLE_PRECISION |
Return Type
ASIN
returns a value of type DOUBLE_PRECISION
.
Example
The following query calculates the arcsine of 1:
SELECT ASIN(1) as result;
Returns
result (DOUBLE PRECISION) |
---|
1.5707963267948966 |