Apache Tajo - cbrt(x)



Let us now check the cbrt(x) function with the following query.

Query

default> select cbrt(4) as cubic_root; 

Result

The above query will generate the following result.

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

The cubic root of 4 is returned as output.

apache_tajo_math_functions.htm
Advertisements