SQL Server/T-SQL Tutorial/Math Functions/COT
Версия от 13:46, 26 мая 2010; (обсуждение)
COT returns a float value that is the cotangent of the angle passed in as a parameter.
Note that the angle passed in must be in radians.
6>
7> SELECT COT(1.2)
8> GO
------------------------
0.38877956936820496
(1 rows affected)