Mega Code Archive

 
Categories / MSSQL / Math Functions
 

COS

1> -- COS: return a float value that is the cosine of the angle. 2> -- Note that this angle passed in must be in radians. 3> 4> SELECT COS(1.2) 5> GO ------------------------      0.36235775447667362 (1 rows affected) 1>