नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
A mathematical function that returns the trigonometric cotangent of the specified angle, in radians, in the specified float expression.
Transact-SQL Syntax Conventions
Syntax
COT ( float_expression )
Arguments
- float_expression
Is an expression**of type float or of a type that can be implicitly converted to float.
Return Types
float
Examples
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
Here is the result set.
The COT of the angle is: -0.040312
(1 row(s) affected)
See Also
Reference
Mathematical Functions (Transact-SQL)