PostgreSQL/Math Functions/tan — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 13:45, 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=#