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

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

TAN return a float value that is the tangent of the angle passed in as a parameter.

   <source lang="sql">

Note that this angle passed in must be in radians. 5> SELECT TAN(1.2) 6> GO


     2.5721516221263188

(1 rows affected)</source>