Database Design for Tagging - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T14:45:58Zhttp://stackoverflow.com/feeds/question/48475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48475/database-design-for-tagging27Database Design for TaggingChristian Berg2008-09-07T14:31:31Z2009-05-04T22:21:26Z
<p>How would you design a database to support the following tagging features:</p>
<ul>
<li>items can have a large number of tags</li>
<li>searches for all items that are tagged with a given set of tags must be quick (the items must have ALL tags, so it's an AND-search, not an OR-search)</li>
<li>creating/writing items may be slower to enable quick lookup/reading</li>
</ul>
<p>Ideally, the lookup of all items that are tagged with (at least) a set of n given tags should be done using a single SQL statement. Since the number of tags to search for as well as the number of tags on any item are unknown and may be high, using JOINs is impractical.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48480#484806Answer by Slartibartfast for Database Design for TaggingSlartibartfast2008-09-07T14:39:39Z2008-09-07T17:03:33Z<p>I don't see a problem with a straightforward solution: Table for items, table for tags, crosstable for "tagging"</p>
<p>Indices on cross table should be enough optimisation. Selecting appropriate items would be </p>
<pre><code>SELECT * FROM items WHERE id IN
(SELECT DISTINCT item_id FROM item_tag WHERE
tag_id = tag1 OR tag_id = tag2 OR ...)
</code></pre>
<p>AND tagging would be </p>
<pre><code>SELECT * FROM items WHERE
EXISTS (SELECT 1 FROM item_tag WHERE id = item_id AND tag_id = tag1)
AND EXISTS (SELECT 1 FROM item_tag WHERE id = item_id AND tag_id = tag2)
AND ...
</code></pre>
<p>which is admittedly, not so efficient for large number of comparing tags. If you are to maintain tag count in memory, you could make query to start with tags that are not often, so AND sequence would be evaluated quicker. Depending on expected number of tags to be matched against and expectancy of matching any single of them this could be OK solution, if you are to match 20 tags, and expect that some random item will match 15 of them, then this would still be heavy on a database.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48481#484811Answer by Brad Bruce for Database Design for TaggingBrad Bruce2008-09-07T14:39:52Z2008-09-08T22:02:48Z<p>The easiest method is to create a "tags" table.<br />
Target_Type -- in case you are tagging multiple tables<br />
Target -- The key to the record being tagged<br />
Tag -- The text of a tag </p>
<p>Querying the data would be something like<br />
Select distinct target from tags<br />
where tag in ([your list of tags to search for here])<br />
and target_type = [the table you're searching]</p>
<p>-- Edit --<br />
Based on your requirement to AND the conditions, the query above would turn into something like this</p>
<p>Select target from
(select target, count(*) cnt
from tags<br />
where tag in ([your list of tags to search for here])<br />
and target_type = [the table you're searching])
where cnt = [number of tags being searched]</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48485#484850Answer by FlySwat for Database Design for TaggingFlySwat2008-09-07T14:43:30Z2008-09-07T14:58:31Z<p>You won't be able to avoid joins and still be somewhat normalized.</p>
<p>My approach is to have a Tag Table.</p>
<pre><code> TagId (PK)| TagName (Indexed)
</code></pre>
<p>Then, you have a TagXREFID column in your items table.</p>
<p>This TagXREFID column is a FK to a 3rd table, I'll call it TagXREF:</p>
<pre><code> TagXrefID | ItemID | TagId
</code></pre>
<p>So, to get all tags for an item would be something like:</p>
<pre><code>SELECT Tags.TagId,Tags.TagName
FROM Tags,TagXref
WHERE TagXref.TagId = Tags.TagId
AND TagXref.ItemID = @ItemID
</code></pre>
<p>And to get all items for a tag, I'd use something like this:</p>
<pre><code>SELECT * FROM Items, TagXref
WHERE TagXref.TagId IN
( SELECT Tags.TagId FROM Tags
WHERE Tags.TagName = @TagName; )
AND Items.ItemId = TagXref.ItemId;
</code></pre>
<p>To AND a bunch of tags together, You would to modify the above statement slightly to add AND Tags.TagName = @TagName1 AND Tags.TagName = @TagName2 etc...and dynamically build the query.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48489#484894Answer by Zizzencs for Database Design for TaggingZizzencs2008-09-07T14:52:22Z2009-05-04T22:21:26Z<p>You might want to experiment with a not-strictly-database solution like a <a href="http://en.wikipedia.org/wiki/Content%5Frepository%5FAPI%5Ffor%5FJava" rel="nofollow">Java Content Repository</a> implementation (e.g. <a href="http://en.wikipedia.org/wiki/Apache%5FJackrabbit" rel="nofollow">Apache Jackrabbit</a>) and use a search engine built on top of that like <a href="http://en.wikipedia.org/wiki/Apache%5FLucene" rel="nofollow">Apache Lucene</a>.</p>
<p>This solution with the appropriate caching mechanisms would possibly yield better performance than a home-grown solution.</p>
<p>However, I don't really think that in a small or medium-sized application you would require a more sophisticated implementation than the normalized database mentioned in earlier posts.</p>
<p>EDIT: with your clarification it seems more compelling to use a JCR-like solution with a search engine. That would greatly simplify your programs in the long run.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48490#484900Answer by Christian Berg for Database Design for TaggingChristian Berg2008-09-07T14:53:06Z2008-09-07T14:53:06Z<p>Thanks for all the answers so far.</p>
<p>If I'm not mistaken, however, the given answers show how to do an OR-search on tags. (Select all items that have one or more of n tags). I am looking for an efficient AND-search. (Select all items that have ALL n tags - and possibly more.)</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48542#485423Answer by David Schmitt for Database Design for TaggingDavid Schmitt2008-09-07T16:05:51Z2008-09-07T16:05:51Z<p>This is (almost) the same question as <a href="http://beta.stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging#48541" rel="nofollow">How do you recommend implementing tags or tagging</a></p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48558#485580Answer by digiguru for Database Design for Taggingdigiguru2008-09-07T16:25:50Z2008-09-07T16:25:50Z<p>What I like to do is have a number of tables that represent the raw data, so in this case you'd have</p>
<pre><code>Items (ID pk, Name, <properties>)
Tags (ID pk, Name)
TagItems (TagID fk, ItemID fk)
</code></pre>
<p>This works fast for the write times, and keeps everything normalized, but you may also note that for each tag, you'll need to join tables twice for every further tag you want to AND, so it's got slow read. </p>
<p>A solution to improve read is to create a caching table on command by setting up a stored procedure that essentially creates new table that represents the data in a flattened format...</p>
<pre><code>CachedTagItems(ID, Name, <properties>, tag1, tag2, ... tagN)
</code></pre>
<p>Then you can consider how often the Tagged Item table needs to be kept up to date, if it's on every insert, then call the stored procedure in a cursor insert event. If it's an hourly task, then set up an hourly job to run it. </p>
<p>Now to get really clever in data retrieval, you'll want to create a stored procedure to get data from the tags. Rather than using nested queries in a massive case statement, you want to pass in a single parameter containing a list of tags you want to select from the database, and return a record set of Items. This would be best in binary format, using bitwise operators.</p>
<p>In binary format, it is easy to explain. Let's say there are four tags to be assigned to an item, in binary we could represent that </p>
<pre><code>0000
</code></pre>
<p>If all four tags are assigned to an object, the object would look like this...</p>
<pre><code>1111
</code></pre>
<p>If just the first two...</p>
<pre><code>1100
</code></pre>
<p>Then it's just a case of finding the binary values with the 1s and zeros in the column you want. Using SQL Server's Bitwise operators, you can check that there is a 1 in the first of the columns using very simple queries.</p>
<p>Check this link to find out <a href="http://cas.sdss.org/dr6/en/help/docs/sql_help.asp" rel="nofollow">more</a>.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48590#485900Answer by Portman for Database Design for TaggingPortman2008-09-07T17:12:54Z2008-09-07T17:12:54Z<p>To paraphrase what others have said: the trick isn't in the <strong>schema</strong>, it's in the <strong>query</strong>.</p>
<p>The naive schema of Entities/Labels/Tags is the right way to go. But as you've seen, it's not immediately clear how to perform an AND query with a lot of tags.</p>
<p>The best way to optimize that query will be platform-dependent, so I would recommend re-tagging your question with your RDBS and changing the title to something like "Optimal way to perform AND query on a tagging database".</p>
<p>I have a few suggestions for MS SQL, but will refrain in case that's not the platform you're using.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48604#486040Answer by chakrit for Database Design for Taggingchakrit2008-09-07T17:38:38Z2008-09-07T17:38:38Z<p>I'd second @Zizzencs suggestion that you might want something that's not totally (R)DB-centric</p>
<p>Somehow, I believe that using plain nvarchar fields to store that tags with some proper caching/indexing might yield faster results. But that's just me.</p>
<p>I've implemented tagging systems using 3 tables to represent a Many-to-Many relationship before (Item Tags ItemTags), but I suppose you will be dealing with tags in a lot of places, I can tell you that with 3 tables having to be manipulated/queried simultaneously all the time will definitely make your code more complex.</p>
<p>You might want to consider if the added complexity is worth it.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48652#486527Answer by Troels Arvin for Database Design for TaggingTroels Arvin2008-09-07T18:22:46Z2008-09-07T18:22:46Z<p>About ANDing: It sounds like you are looking for the "relational division" operation. <a href="http://www.dbazine.com/ofinterest/oi-articles/celko1" rel="nofollow">This article</a> covers relational division in concise and yet comprehendible way.</p>
<p>About performance: A bitmap-based approach intuitively sounds like it will suit the situation well. However, I'm not convinced it's a good idea to implement bitmap indexing "manually", like digiguru suggests: It sounds like a complicated situation whenever new tags are added(?) But some DBMSes (including Oracle) offer bitmap indexes which may somehow be of use, because a built-in indexing system does away with the potential complexity of index maintenance; additionally, a DBMS offering bitmap indexes should be able to consider them in a proper when when performing the query plan.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/48692#4869218Answer by Jeff Atwood for Database Design for TaggingJeff Atwood2008-09-07T19:17:04Z2008-09-07T19:17:04Z<p>Here's a good article on tagging Database schemas:</p>
<p><a href="http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html" rel="nofollow">http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html</a></p>
<p>along with performance tests:</p>
<p><a href="http://www.pui.ch/phred/archives/2005/06/tagsystems-performance-tests.html" rel="nofollow">http://www.pui.ch/phred/archives/2005/06/tagsystems-performance-tests.html</a></p>
<p>Note that the conclusions there are very specific to MySQL, which (at least in 2005 at the time that was written) had very poor full text indexing characteristics.</p>
http://stackoverflow.com/questions/48475/database-design-for-tagging/264016#2640164Answer by Winston Fassett for Database Design for TaggingWinston Fassett2008-11-05T00:40:15Z2008-11-05T00:40:15Z<p>I just wanted to highlight that the article that @Jeff Atwood links to (<a href="http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html" rel="nofollow">http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html</a>) is very thorough (It discusses the merits of 3 different schema approaches) and has a good solution for the AND queries that will usually perform better than what has been mentioned here so far (i.e. it doesn't use a correlated subquery for each term). Also lots of good stuff in the comments.</p>
<p>ps - The approach that everyone is talking about here is referred to as the "Toxi" solution in the article. </p>