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.

1SELECT ASIN(N) as ALIAS
2FROM DATASET;

Example 

This example takes the arcsine of 35 degrees.

1SELECT ASIN(RADIANS(35)) as asinValue
2FROM "Opportunity"
3LIMIT 1;
asinValue
0.60746