Apache Tajo - MIN(expression)



Let us now check min(exp) function with the following query.

Query

sampledb> select min(mark) as min from mytable;  

Result

The above query will generate the following result.

min 
------------------------------- 
50 

The query returns the minimum of marks from mytable. The minimum mark is 50.

apache_tajo_aggregate_and_window_functions.htm
Advertisements