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>