Find arc cosine of the number in oracle using ACOS mathematical function
By Santhosh N
This explains how to find arc cosine of the number in oracle using mathematical function, ACOS.
There is a Mathematical function in oracle by the name, ACOS which is used to find the arc cosine of the number.
Syntax: ACOS(n)
Here n is the number that needs to be converted to arc cosine.
Ex1: SELECT ACOS(0.5) FROM dual;
This returns 1.0471975511966 as result.
Related FAQs
This explains how to find square root of the number in oracle using mathematical function, SQRT.
This explains how to find maximum value of the expression in oracle using mathematical function, MAX.
This explains how to find absolute value of the number in oracle using mathematical function, ABS.
This explains how to convert one datatype to other in oracle.
This explains how to convert the string to an interval Year to Month type in oracle.
This explains how to convert LOB value to NCLOB value in oracle.
Find arc cosine of the number in oracle using ACOS mathematical function (867 Views)