PostgreSQL/Math Functions/tan — различия между версиями

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

Текущая версия на 10:14, 26 мая 2010

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=#