Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 1.77 KB

cot-transact-sql.md

File metadata and controls

62 lines (47 loc) · 1.77 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
COT (Transact-SQL)
COT (Transact-SQL)
markingmyname
maghan
07/24/2017
sql
t-sql
reference
COT_TSQL
COT
COT function
cotangent
TSQL
>= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqldb-mi-current||=fabric

COT (Transact-SQL)

[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw]

A mathematical function that returns the trigonometric cotangent of the specified angle - in radians - in the specified float expression.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

COT ( float_expression )  

Arguments

float_expression
An expression of type float, or of a type that can implicitly convert to float.

Return types

float

Examples

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)  

See also

Mathematical Functions (Transact-SQL)