Hoping someone can help with a MySQL Query...
I have created a select list off of a DB table...
What I am creating is an Automotive drop down list. The user selects the Vehicle year and I query the database to show me all makes for that year.
The list I was given was ordered YEAR,MAKE,MODEL,ENGINE and I imported it into my DB table that way
When I ask it to return every MAKE where YEAR == X, I may get 5 Honda (because the database contains 1 line for each model), 10 Chevrolet, etc. I want to only print to the list 1 Honda and 1 Chevrolet.
How do I limit this?
I hope this makes sense...
R