| title | COT (Transact-SQL) | ||
|---|---|---|---|
| description | COT (Transact-SQL) | ||
| author | markingmyname | ||
| ms.author | maghan | ||
| ms.date | 07/24/2017 | ||
| ms.prod | sql | ||
| ms.technology | t-sql | ||
| ms.topic | reference | ||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
||
| monikerRange | >= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqldb-mi-current |
[!INCLUDE sql-asdb-asdbmi-asa-pdw]
A mathematical function that returns the trigonometric cotangent of the specified angle - in radians - in the specified float expression.
Transact-SQL Syntax Conventions
COT ( float_expression )
[!INCLUDEsql-server-tsql-previous-offline-documentation]
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 [!INCLUDEssResult]
The COT of the angle is: -0.040312
(1 row(s) affected)