Sorry the title is a bit convoluted!
I've had a little search everywhere but I'm not sure I'm wording it right to get any results or if what I want to do is even possible...
Basically I want to return all values in a table that match a value in another. I have the tables:
Table "Cars" Table "Models"
Car_ID Car Car_ID Model_ID Model
------------------- ----------------------------
1 Ford 1 14 Mustang
2 Fiat 1 21 Focus
3 Toyota 1 87 Escort
2 78 500
2 45 Punto
3 66 Aygo
And if I search for just one model name (eg. Escort) I want these results:
Car Model_ID Model
------------------------
Ford 14 Mustang
Ford 21 Focus
Ford 87 Escort
So searching for a car model will return all the models that are the same make.
Any one have any ideas?