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

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

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

atan(x): Returns the inverse tangent of x

   <source lang="sql">

postgres=# -- atan(x): Returns the inverse tangent of x postgres=# select atan(tan(1)) AS inverse_example;

inverse_example

              1

(1 row) postgres=# postgres=#

      </source>