MIN Function
An aggregate function that returns the minimum value from a set of numbers. Opposite of the MAX function. Its single argument can be numeric column, or the numeric result of a function or expression applied to the column value. Rows with a NULL value for the specified column are ignored. If the table is empty, or all the values supplied to MIN are NULL, MIN returns NULL.
When the query contains a GROUP BY clause, returns one value for each combination of grouping values.
Return type: Same as the input argument
Examples:
-- Find the smallest value for this column in the table. select min(c1) from t1; -- Find the smallest value for this column from a subset of the table. select min(c1) from t1 where month = 'January' and year = '2013'; -- Find the smallest value from a set of numeric function results. select min(length(s)) from t1; -- Can also be used in combination with DISTINCT and/or GROUP BY. -- Return more than one result. select month, year, min(purchase_price) from store_stats group by month, year; -- Filter the input to eliminate duplicates before performing the calculation. select min(distinct x) from t1;
<< MAX Function | NDV Function >> | |