SQL Server/T-SQL Tutorial/Math Functions/COS

Материал из SQL эксперт
Перейти к: навигация, поиск

COS Returns a float value that is the cosine of the angle passed in as a parameter.

   <source lang="sql">

Note that this angle passed in must be in radians. 7> 8> SELECT COS(1.2) 9> GO


    0.36235775447667362

(1 rows affected) 1> SELECT COS(ACOS(0.5)) 2> GO


    0.49999999999999989

(1 rows affected)</source>