This is my cars table which has 1000 rows. Each of make or manufacturer has different model and same model can have different price. I have to output min price among all of the model of each manufacturer and i cant think of any way to do this. Nearest to what i got is,
SELECT make, model, min(price) FROM car
GROUP BY model, make
ORDER BY make;
which outputs,527 rows
But i want min price among all of the models of each make. HELP!!