MySQL Limit with Many to Many Relationship - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T04:01:08Z http://stackoverflow.com/feeds/question/167067 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship 1 MySQL Limit with Many to Many Relationship Andrew Gwozdziewycz 2008-10-03T14:12:38Z 2009-07-23T11:23:01Z <p>Given a SCHEMA for implementing tags</p> <p>ITEM ItemId, ItemContent</p> <p>TAG TagId, TagName</p> <p>ITEM_TAG ItemId, TagId</p> <p>What is the best way to limit the number of ITEMS to return when selecting with tags?</p> <pre><code>SELECT i.ItemContent, t.TagName FROM item i INNER JOIN ItemTag it ON i.id = it.ItemId INNER JOIN tag t ON t.id = it.TagId </code></pre> <p>is of course the easiest way to get them all back, but using a limit clause breaks down, because you get an duplicate of all the items for each tag, which counts toward the number of rows in LIMIT.</p> http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship/167156#167156 0 Answer by GSerg for MySQL Limit with Many to Many Relationship GSerg 2008-10-03T14:31:49Z 2008-10-03T14:31:49Z <p>Maybe something like</p> <pre><code>select i.ItemContent, t.TagName from (SELECT ItemId, ItemContent FROM item limit 10) i INNER JOIN ItemTag it ON i.ItemId = it.ItemId --You will miss tagless items here! INNER JOIN tag t ON t.id = it.TagId </code></pre> http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship/167573#167573 0 Answer by Bill Karwin for MySQL Limit with Many to Many Relationship Bill Karwin 2008-10-03T15:59:59Z 2008-10-03T15:59:59Z <p>My first suggestion is to use a subquery to generate the list of item ID's and return items matching those item ID's. But this doesn't include the TagName in your result set. I'll submit a separate answer with another solution.</p> <pre><code>SELECT i.ItemContent FROM item AS i WHERE i.id IN ( SELECT it.ItemId FROM ItemTag AS it INNER JOIN tag AS t ON (t.id = it.TagId) WHERE t.TagName IN ('mysql', 'database', 'tags', 'tagging') ); </code></pre> <p>This is a non-correlated subquery, so a good SQL engine should factor it out and run it only once.</p> http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship/167600#167600 2 Answer by Bill Karwin for MySQL Limit with Many to Many Relationship Bill Karwin 2008-10-03T16:03:57Z 2008-10-03T16:03:57Z <p>My second solution uses a MySQL function GROUP_CONCAT() to combine all tags matching the item into a comma-separated string in the result set.</p> <pre><code>SELECT i.ItemContent, GROUP_CONCAT(t.TagName ORDER BY t.TagName) AS TagList FROM item AS i INNER JOIN ItemTag AS it ON i.id = it.ItemId INNER JOIN tag AS t ON t.id = it.TagId GROUP BY i.ItemId; </code></pre> <p>The GROUP_CONCAT() function is a MySQL feature, it's not part of standard SQL.</p> http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship/167653#167653 0 Answer by Katy for MySQL Limit with Many to Many Relationship Katy 2008-10-03T16:13:11Z 2008-10-03T16:13:11Z <p>You could also use Distinct/Group By:</p> <p><code> SELECT DISTINCT TagID, TagName FROM ((TAG T INNER JOIN ITEM_TAG I_T ON T.TagID = I_T.TagID) INNER JOIN ITEM I ON I_T.ItemID = I.ItemID) GROUP BY TagID, TagName</code></p>