Best DB (MySQL) structure: Articles which contain favored tags - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T09:44:31Zhttp://stackoverflow.com/feeds/question/900337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/900337/best-db-mysql-structure-articles-which-contain-favored-tags1Best DB (MySQL) structure: Articles which contain favored tagsmarco92w2009-05-22T22:55:41Z2009-05-23T04:57:02Z
<p>Hello!</p>
<p>I've built a news site:
- The articles are shown on the front page ordered by date. The newest one first.
- The news are in the table "news" with the fields "id", "title", "text" and some other ones.
- All articles are tagged with 1-5 relevant tags.
- The tags are in the table "tags" with the fields "id", "tag", "article" and some other ones.
- The field "article" of "tags" fits to the field "id" of "news".</p>
<p>Now I want to give the user the opportunity to add tags to his "favored tags list". Then the user should only see news articles which contain one of the favored tags.</p>
<p>Assuming the user Bob has favored the tags "barack obama", "nba", "new jersey" and "dogs". He should only see articles containing at least one of these four tags.</p>
<p>How could I code a PHP/MySQL script which achieves this? I think my database structure is not adequate for this purpose, is it? I would have to make DB queries like this:</p>
<p>"SELECT * FROM news WHERE id IN (SELECT article FROM tags WHERE tag IN ('barack obama', 'nba', 'new jersey', 'dogs'))"</p>
<p>This query would run for a long time, wouldn't it? There must be a database structure which is more appropriate than mine. Do you have an idea for this problem? Which DB structure do I need and what queries must I use then?</p>
<p>I hope you can help me. Thanks in advance!</p>
http://stackoverflow.com/questions/900337/best-db-mysql-structure-articles-which-contain-favored-tags/900382#9003824Answer by Frank Farmer for Best DB (MySQL) structure: Articles which contain favored tagsFrank Farmer2009-05-22T23:13:37Z2009-05-22T23:13:37Z<p>The following is by no means exhaustive/definitive, but it should get you going in the right direction.</p>
<h1>Tables:</h1>
<pre><code>news
=====
id
title
text
tag
===
id
tag
tag_map
=======
tag_id
news_id
favorite_tags
=============
user_id
tag_id
</code></pre>
<h1>Query</h1>
<pre><code>SELECT *
FROM favorite_tags
JOIN tag_map ON favorite_tags.tag_id = tag_map.tag_id
JOIN news ON tag_map.news_id = news.id
WHERE favorite_tags.user_id = $userid
</code></pre>
http://stackoverflow.com/questions/900337/best-db-mysql-structure-articles-which-contain-favored-tags/900881#9008811Answer by Alex Martelli for Best DB (MySQL) structure: Articles which contain favored tagsAlex Martelli2009-05-23T04:57:02Z2009-05-23T04:57:02Z<p>The query's performance (whether in your sub-select approach, or Frank Farmer's more elegant join-based one) will chiefly depend on indices. Just remember that MySQL uses just one index per table, and the proper set of indices (depending on the query you want to optimize) invariably becomes pretty obvious...</p>