SQL Server/T-SQL/Math Functions/TAN

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

TAN: return a float value that is the tangent of the angle passed in

2> -- TAN: return a float value that is the tangent of the angle passed in.
3> -- Note that this angle passed in must be in radians.
4>
5> SELECT TAN(1.2)
8> GO
------------------------
      2.5721516221263188
(1 rows affected)
1>