SQL Server/T-SQL/Math Functions/COT

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

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>