Apache Tajo - sqrt(x)



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

Query

default> select sqrt(3) as squareroot; 

Result

The above query will generate the following result.

     squareroot
-------------------- 
 1.7320508075688772 

Square root of 3 value is 1.732.

apache_tajo_math_functions.htm
Advertisements