Apache Tajo - round(x)



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

Query

default> select round(7.8) as round;

Result

The above query will generate the following result.

round 
------------------------------- 
8

Here, 7.8 value is rounded by 8 using the round() function.

apache_tajo_math_functions.htm
Advertisements