| title | COT (Transact-SQL) | Microsoft Docs | ||
|---|---|---|---|
| ms.custom | |||
| ms.date | 07/24/2017 | ||
| ms.prod | sql-non-specified | ||
| ms.reviewer | |||
| ms.suite | |||
| ms.technology |
|
||
| ms.tgt_pltfrm | |||
| ms.topic | language-reference | ||
| f1_keywords |
|
||
| dev_langs |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | c87a9dac-e398-4125-80c3-7df3c2ce6b63 | ||
| caps.latest.revision | 31 | ||
| author | BYHAM | ||
| ms.author | rickbyh | ||
| manager | jhubbard |
[!INCLUDEtsql-appliesto-ss2008-all_md]
A mathematical function that returns the trigonometric cotangent of the specified angle, in radians, in the specified float expression.
Transact-SQL Syntax Conventions
-- Syntax for SQL Server, Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse
COT ( float_expression ) float_expression
Is an expressionof type float or of a type that can be implicitly converted to float.
float
The following example returns the COT 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) The following example returns the COT 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)