A mathematical function that returns the trigonometric cotangent of the specified angle - in radians - in the specified float expression.
Transact-SQL Syntax Conventions
float_expression
An expression of type float, or of a type that can implicitly convert to float.
float
This example returns the COT
value for the specific angle:
DECLARE @angle float;
SET @angle = 124.1332;
SELECT 'The COT of the angle is: ' + CONVERT(varchar,COT(@angle));
GO
Here is the result set.