How To Use ACOS Function In OraclePLSQL
Description
N must be in the range of -1 to 1.
This functions returns a value in the range of 0 to pi.
Syntax
The syntax of ACOS function in Oracle/PLSQL is given below-
- ACOS (NUMBER)
Example
- Select ACOS (0.36)
- from Dual;
Let’s take another example of ACOS function, which is given below-
Example
- Select ACOS (-0.36)
- from Dual;
Example
- Select ACOS (1)
- from Dual;
Example
- Select ACOS (0)
- from Dual;
Summary