Apache Tajo - div(x,y)



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

Query

default> select div(7,4) as division; 

Result

The above query will generate the following result.

division 
------------------------------- 
1

The output is the division result for the given two integer values 7/4 is 1.

apache_tajo_math_functions.htm
Advertisements