SQL Server/T-SQL Tutorial/Math Functions/TAN
TAN return a float value that is the tangent of the angle passed in as a parameter.
Note that this angle passed in must be in radians.
5> SELECT TAN(1.2)
6> GO
------------------------
2.5721516221263188
(1 rows affected)