COS (Transact-SQL)
Is a mathematical function that returns the trigonometric cosine of the specified angle, in radians, in the specified expression.
Syntax
COS (float_expression )
Return Types
float
Examples
The following example returns the COS of the specific angle.
DECLARE @angle float
SET @angle = 14.78
SELECT 'The COS of the angle is: ' + CONVERT(varchar,COS(@angle))
GO
Here is the result set.
The COS of the angle is: -0.599465
(1 row(s) affected)