SQL Server/T-SQL/Math Functions/COT — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:20, 26 мая 2010
COT: return a float value that is the cotangent of the angle passed in
1> -- COT: return a float value that is the cotangent of the angle passed in.
2> -- Note that the angle passed in must be in radians.
3>
4> SELECT COT(1.2)
5> GO
------------------------
0.38877956936820496
(1 rows affected)
1>