SQL many-to-many matching - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:59:07Z http://stackoverflow.com/feeds/question/24715 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24715/sql-many-to-many-matching 2 SQL many-to-many matching Kyle Cronin 2008-08-24T00:09:34Z 2008-08-24T01:15:53Z <p>I'm implementing a tagging system for a website. There are multiple tags per object and multiple objects per tag. This is accomplished by maintaining a table with two values per record, one for the ids of the object and the tag.</p> <p>I'm looking to write a query to find the objects that match a given set of tags. Suppose I had the following data (in [object] -> [tags]* format)</p> <pre><code>apple -&gt; fruit red food banana -&gt; fruit yellow food cheese -&gt; yellow food firetruck -&gt; vehicle red </code></pre> <p>If I want to match (red), I should get apple and firetruck. If I want to match (fruit, food) I should get (apple, banana).</p> <p>How do I write a SQL query do do what I want?</p> <p>@Jeremy Ruten,</p> <p>Thanks for your answer. The notation used was used to give some sample data - my database does have a table with 1 object id and 1 tag per record.</p> <p>Second, my problem is that I need to get all objects that match all tags. Substituting your OR for an AND like so:</p> <pre><code>SELECT object WHERE tag = 'fruit' AND tag = 'food'; </code></pre> <p>Yields no results when run.</p> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24720#24720 0 Answer by jeremy Ruten for SQL many-to-many matching jeremy Ruten 2008-08-24T00:17:39Z 2008-08-24T00:17:39Z <p>I'd suggest making your table have 1 tag per record, like this:</p> <pre><code> apple -&gt; fruit apple -&gt; red apple -&gt; food banana -&gt; fruit banana -&gt; yellow banana -&gt; food </code></pre> <p>Then you could just</p> <pre><code> SELECT object WHERE tag = 'fruit' OR tag = 'food'; </code></pre> <p>If you really want to do it your way though, you could do it like this:</p> <pre><code> SELECT object WHERE tag LIKE 'red' OR tag LIKE '% red' OR tag LIKE 'red %' OR tag LIKE '% red %'; </code></pre> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24745#24745 0 Answer by Steve M for SQL many-to-many matching Steve M 2008-08-24T00:49:59Z 2008-08-24T00:49:59Z <p>@Kyle: Your query should be more like:</p> <pre> SELECT object WHERE tag IN ('fruit', 'food'); </pre> <p>Your query was looking for rows where the tag was both fruit AND food, which is impossible seeing as the field can only have one value, not both at the same time.</p> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24747#24747 0 Answer by Kyle Cronin for SQL many-to-many matching Kyle Cronin 2008-08-24T00:56:21Z 2008-08-24T00:56:21Z <p>@Steve M</p> <p>Doesn't IN act as an OR in that instance? If so, it's not what I'm looking for. Since cheese has the tag food it would be returned as well, but since it's not also tagged fruit it's not supposed to be.</p> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24754#24754 1 Answer by DevelopingChris for SQL many-to-many matching DevelopingChris 2008-08-24T01:02:22Z 2008-08-24T01:02:22Z <p>Given:</p> <ul> <li>object table (primary key id)</li> <li>objecttags table (foreign keys objectId, tagid)</li> <li><p>tags table (primary key id)</p> <p>SELECT distinct o.* from object o join objecttags ot on o.Id = ot.objectid join tags t on ot.tagid = t.id where t.Name = 'fruit' or t.name = 'food';</p></li> </ul> <p>This seems backwards, since you want and, but the issue is, 2 tags aren't on the same row, and therefore, an and yields nothing, since 1 single row cannot be both a fruit and a food. This query will yield duplicates usually, because you will get 1 row of each object, per tag.</p> <p>If you wish to really do an and in this case, you will need a group by, and a having count = number of ors in your query for example.</p> <pre><code>SELECT distinct o.name, count(*) as count from object o join objecttags ot on o.Id = ot.objectid join tags t on ot.tagid = t.id where t.Name = 'fruit' or t.name = 'food' group by o.name having count = 2; </code></pre> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24758#24758 2 Answer by Matt Rogish for SQL many-to-many matching Matt Rogish 2008-08-24T01:07:37Z 2008-08-24T01:15:53Z <p>Oh gosh I may have mis-interpreted your original comment. </p> <p>The easiest way to do this in SQL would be to have three tables:</p> <pre><code>1) Tags ( tag_id, name ) 2) Objects (whatever that is) 3) Object_Tag( tag_id, object_id ) </code></pre> <p>Then you can ask virtually any question you want of the data quickly, easily, and efficiently (provided you index appropriately). If you want to get fancy, you can allow multi-word tags, too (there's an elegant way, and a less elegant way, I can think of). </p> <p>I assume that's what you've got, so this SQL below will work:</p> <p>The literal way: </p> <pre><code> SELECT obj FROM object WHERE EXISTS( SELECT * FROM tags WHERE tag = 'fruit' AND oid = object_id ) AND EXISTS( SELECT * FROM tags WHERE tag = 'Apple' AND oid = object_id ) </code></pre> <p>There are also other ways you can do it, such as:</p> <pre><code>SELECT oid FROM tags WHERE tag = 'Apple' INTERSECT SELECT oid FROM tags WHERE tag = 'Fruit' </code></pre> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24759#24759 0 Answer by Rob Allen for SQL many-to-many matching Rob Allen 2008-08-24T01:11:25Z 2008-08-24T01:11:25Z <p>Combine Steve M.'s suggestion with Jeremy's you'll get a single record with what you are looking for:</p> <pre><code>select object from tblTags where tag = @firstMatch and ( @secondMatch is null or (object in (select object from tblTags where tag = @secondMatch) ) </code></pre> <p>Now, that doesn't scale very well but it will get what you are looking for. I think there is a better way to go about doing this so you can easily have N number of matching items without a great deal of impact to the code but it currently escapes me.</p> http://stackoverflow.com/questions/24715/sql-many-to-many-matching/24761#24761 0 Answer by jms for SQL many-to-many matching jms 2008-08-24T01:15:31Z 2008-08-24T01:15:31Z <p>I recommend the following schema.</p> <pre><code>Objects: objectID, objectName Tags: tagID, tagName ObjectTag: objectID,tagID </code></pre> <p>With the following query.</p> <pre><code>select distinct objectName from ObjectTab ot join object o on o.objectID = ot.objectID join tabs t on t.tagID = ot.tagID where tagName in ('red','fruit') </code></pre>