ACOS

Returns the arc cosine of x in radians, or NULL if x is not in the range [-1, 1].

Syntax

ACOS (x)

Arguments

  • x: the argument

Return Type

Float or double. NULL if x is NULL or invalid.

Examples

SELECT ACOS(1);
+---------+
| ACOS(1) |
+---------+
|       0 |
+---------+

Last modified: February 24, 2023

Was this article helpful?