SQL Server/T-SQL/Math Functions/COT — различия между версиями

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

Версия 13:46, 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>