Forum Moderators: coopster
Select wines WHERE category = "Wine" and subcategory = "Red"
So that I can select only Red or White wines to display in a table.
Andrew
Select * from wines WHERE category = "Wine" AND subcategory = "Red"
It does work!
Tom