SQL Server/T-SQL/Math Functions/SIN
SIN: return a float value that is the sine of the angle passed in
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)