Apache Presto - Math Function cbrt(x)



Query

presto:default> select cbrt(4) as cubic_root; 

Result

   cubic_root 
-------------------- 
 1.5874010519681996 

The cubic root of 4 is returned as an output.

apache_presto_sql_functions.htm
Advertisements