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

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

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

cbrt(dp) cube root

postgres=#
postgres=# -- cbrt(dp) cube root
postgres=#
postgres=# select cbrt(27.0);
 cbrt
------
    3
(1 row)
postgres=#
postgres=#



cbrt(x): Returns the cube root of x

postgres=# -- cbrt(x): Returns the cube root of x
postgres=# SELECT cbrt(8.0) AS "eight"s cube root";
 eight"s cube root
-------------------
                 2
(1 row)
postgres=#