The ACOS() function is used to return the arccosine of the passed to it. : ACOS « Numeric Math Functions « Oracle PL / SQL






The ACOS() function is used to return the arccosine of the passed to it.

 

Syntax: ACOS(<numeric expression>)


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

  ACOS(.5)
----------
1.04719755

 








Related examples in the same category

1.ACOS(x): Returns the arccosine of x
2.ACOS(1)