ACOS(1) : ACOS « Numeric Math Functions « Oracle PL / SQL






ACOS(1)


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

   ACOS(1)
----------
         0

SQL>

           
       








Related examples in the same category

1.ACOS(x): Returns the arccosine of x
2.The ACOS() function is used to return the arccosine of the passed to it.