PostgreSQL/Math Functions/tan

Материал из SQL эксперт
Версия от 10:14, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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