SQL Server/T-SQL Tutorial/Math Functions/ATAN

Материал из SQL эксперт
Перейти к: навигация, поиск

ATAN Returns as a float data type, the angle in radians that corresponds to the entered tangent.

   <source lang="sql">

This is the inverse of TAN. 6> 7> SELECT ATAN(0.87) 8> GO


    0.71599111441630015

(1 rows affected)</source>