SQL Server/T-SQL/Math Functions/TAN

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

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>