Apache Tajo - abs(x)


Advertisements


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

Query

default> select abs(4.65) as absolute;

Result

The above query will generate the following result.

 absolute 
---------- 
   4.65

Here, the absolute value is returned for the given value.


apache_tajo_math_functions.htm

Advertisements