MIN « Aggregate Functions « Oracle PL / SQL






1.MIN: return the lowest values in a column, ignores NULLs
2.Syntax: MIN([DISTINCT]|[ALL] )
3.To find the price range for the cars on the lot in relation to the manufacturer, the GROUP BY clause must be used
4.MIN with dates, it gives you the oldest dates
5.MIN with character data, retrieves the lowest value alphabetically (that is, closest to 'a')
6. Example using the MIN function with having clause
7.Example using the MIN function with group by clause
8.Min with null value