PostgreSQL/Math Functions/tan

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

tan(x): Returns the tangent of x

postgres=#
postgres=# -- tan(x): Returns the tangent of x
postgres=# SELECT tan(pi() / 8), tan(0);
        tan        | tan
-------------------+-----
 0.414213562373095 |   0
(1 row)
postgres=#