I am a beginner with MySQL and so far I have only had to work with 'many to one' table links. I now have a need for a 'many to many' link but am unsure how to do it. As far as I understand I would need a third table.
Basically I have a table full of parks and a table full of links to articles. On the webpage that shows an individual parks details I need a query looking for any attached articles to that park. Usually I would use a park_id column in the other table and link using that but the problem here is each article could be linked to many parks.
Example query would be:
SELECT * FROM tpf_features
Where park_id = 7
But an article may have park_id's of 3, 7, 13, 23.
Can someone point me in the right direction to build this relationship and query up correctly.
Thank you