MySQL tutorial: ATAN [EN]
top of page
CerebroSQL

MySQL: 

ATAN

Syntax:
ATAN(X)

Returns the arc tangent of X, that is, the value whose tangent is X.

Example

mysql> SELECT ATAN(2);
-> 1.1071487177941
mysql> SELECT ATAN(-2);
-> -1.1071487177941

bottom of page