asin(n)
Returns the arcsine value of radians value n. n can be
any real number in the range of -1 <= n
<= 1. If null is passed as an argument, sin() returns null.
asin(n) takes the following syntax.
SELECT ASIN(n) as Alias
FROM dataset;
Example
This example takes the arcsine of 35 degrees.
SELECT ASIN(RADIANS(35)) as asinValue
FROM "Opportunity"
LIMIT 1;
asinValue |
---|
0.60746 |