Apache Tajo - pow(x,y)



Let us now check pow(x,y) with the following query.

Query

default> select pow(2,3) as power; 

Result

The above query will generate the following result.

power 
------------------------------- 
8.0 

The query returns the result for 2 power 3, and the value is 8.

apache_tajo_math_functions.htm
Advertisements