SQL Server/T-SQL/Math Functions/SIN

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

SIN: return a float value that is the sine of the angle passed in

   <source lang="sql">

2> -- SIN: return a float value that is the sine of the angle passed in. 3> -- Note that the angle passed in must be in radians. 4> 5> SELECT SIN(1.2) 6> GO


    0.93203908596722629

(1 rows affected)


      </source>