SQL Server/T-SQL/Math Functions/TAN — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 13:46, 26 мая 2010
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>