Math Functions PostgreSQL

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