This function is used to return the arc cosine value of a given angle a.
acos(DOUBLE a)
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
a |
Yes |
DOUBLE, BIGINT, DECIMAL, or STRING |
The value range is [-1,1]. The value can be a float, integer, or string. If the value is not of the DOUBLE type, the system will implicitly convert it to the DOUBLE type for calculation. |
The return value is of the DOUBLE type. The value ranges from 0 to π.
The value 3.141592653589793 is returned.
select acos(-1);
The value 0 is returned.
select acos(1);
The value NULL is returned.
select acos(null);
The value NAN is returned.
select acos(10);