SQL Server/T-SQL Tutorial/Math Functions/COT
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)