I'm trying to create a directory and I have two tables, entry and location. Each entry will be able to have multiple locations so I'm assuming the best idea (correct if wrong) is to create a third table where I specify 'links'. Example:
Marly:France
Karla:Argentina
Smith:USA
Katie:France
Smith:United Kingdom
Katie:USA
When I want to list people from France I'd go into that third table and pull up names where location = France. I'm fine with doing everything up to this point, but now I need to retrieve data from the entry table for each Name of each person in France (according to the third table). I'm pretty sure I've seen this done before. Any pointers? :D