Oracle PL/SQL/Numeric Math Functions/ASIN

Материал из SQL эксперт
Перейти к: навигация, поиск

ASIN(1)

   <source lang="sql">

SQL> --ASIN(x):Returns the arcsine of x. SQL> SQL> select ASIN(1) from dual;

  ASIN(1)

1.57079633 SQL>

      </source>
   
  


ASIN(x):Returns the arcsine of x

   <source lang="sql">

SQL> --ASIN(x):Returns the arcsine of x. SQL> SQL> select ASIN(-1) from dual;

 ASIN(-1)

-1.5707963 SQL>

      </source>
   
  


The ASIN() function returns the arcsine of the <numeric expression> passed to it.

   <source lang="sql">

Syntax:ASIN(<numeric expression>)

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

 ASIN(.5)

.523598776 SQL> SQL>

</source>