The ASIN() function returns the arcsine of the passed to it. : ASIN « Numeric Math Functions « Oracle PL / SQL






The ASIN() function returns the arcsine of the passed to it.

 

Syntax:ASIN(<numeric expression>)


SQL>
SQL>
SQL>
SQL> SELECT   ASIN(.5) from dual;

  ASIN(.5)
----------
.523598776

SQL>
SQL>

 








Related examples in the same category

1.ASIN(x):Returns the arcsine of x
2.ASIN(1)