cbrt(x): Returns the cube root of x : cbrt « Math Functions « PostgreSQL






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

           
       








Related examples in the same category

1.cbrt(dp) cube root