ATAN
Calculate arc tangent. This function returns the angle in radians whose tangent is the given number.
Syntax
ATAN(X)Description
Examples
SELECT ATAN(2);
+--------------------+
| ATAN(2) |
+--------------------+
| 1.1071487177940904 |
+--------------------+
SELECT ATAN(-2);
+---------------------+
| ATAN(-2) |
+---------------------+
| -1.1071487177940904 |
+---------------------+Last updated
Was this helpful?

