This Oracle tutorial explains how to use the Oracle/PLSQL ASIN function.
The Oracle/PLSQL ASIN function returns the arc sine of a number.
The syntax for the Oracle/PLSQL ASIN function is:
ASIN( number )
ASIN calculates arc sine for number
.
SQL> select ASIN(1) from dual;
-- ww w . ja va 2s . co m
ASIN(1)
----------
1.57079633
SQL> select ASIN(-1) from dual;
ASIN(-1)
----------
-1.5707963
SQL>