SQL Server/T-SQL Tutorial/Math Functions/ATAN
ATAN Returns as a float data type, the angle in radians that corresponds to the entered tangent.
This is the inverse of TAN.
6>
7> SELECT ATAN(0.87)
8> GO
------------------------
0.71599111441630015
(1 rows affected)