SQL Server/T-SQL Tutorial/Math Functions/COT

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

COT returns a float value that is the cotangent of the angle passed in as a parameter.

   <source lang="sql">

Note that the angle passed in must be in radians. 6> 7> SELECT COT(1.2) 8> GO


    0.38877956936820496

(1 rows affected)</source>