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

Материал из SQL эксперт
Версия от 13:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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>