MySQL Query: Select most-recent items with a twist - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:00:18Z http://stackoverflow.com/feeds/question/118487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist 2 MySQL Query: Select most-recent items with a twist Doug Kaye 2008-09-23T00:50:14Z 2008-09-23T04:26:53Z <p>(Sorry the title isn't more help. I have a database of media-file URLs that came from two sources: RSS feeds and manual entries. I want to find the ten most-recently added URLs, but a maximum of one from any feed. To simplify, table 'urls' has columns 'url, feed_id, timestamp'. feed_id='' for any URL that was entered manually. How would I write the query? Remember, I want the ten most-recent urls, but only one from any single feed_id.</p> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118523#118523 0 Answer by Aeon for MySQL Query: Select most-recent items with a twist Aeon 2008-09-23T00:59:44Z 2008-09-23T00:59:44Z <p>You probably want a <a href="http://dev.mysql.com/doc/refman/5.0/en/union.html" rel="nofollow">union</a>. Something like this should work:</p> <pre><code> (SELECT url, feed_id, timestamp FROM rss_items GROUP BY feed_id ORDER BY timestamp DESC LIMIT 10) UNION (SELECT url, feed_id, timestamp FROM manual_items GROUP BY feed_id ORDER BY timestamp DESC LIMIT 10) ORDER BY timestamp DESC LIMIT 10 </code></pre> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118545#118545 -1 Answer by SquareCog for MySQL Query: Select most-recent items with a twist SquareCog 2008-09-23T01:04:57Z 2008-09-23T01:14:09Z <p>MySQL doesn't have the greatest support for this type of query.</p> <p>You can do it using a combination of "GROUP-BY" and "HAVING" clauses, but you'll scan the whole table, which can get costly.</p> <p>There is a more efficient solution published here, assuming you have an index on group ids: <a href="http://www.artfulsoftware.com/infotree/queries.php?&amp;bw=1390#104" rel="nofollow">http://www.artfulsoftware.com/infotree/queries.php?&amp;bw=1390#104</a></p> <p>(Basically, create a temp table, insert into it top K for every group, select from the table, drop the table. This way you get the benefit of the early termination from the LIMIT clause).</p> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118563#118563 0 Answer by don for MySQL Query: Select most-recent items with a twist don 2008-09-23T01:08:14Z 2008-09-23T01:08:14Z <p>Would it work to group by the field that you want to be distinct?</p> <p>SELECT url, feedid FROM urls GROUP BY feedid ORDER BY timestamp DESC LIMIT 10;</p> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118621#118621 3 Answer by Sam Saffron for MySQL Query: Select most-recent items with a twist Sam Saffron 2008-09-23T01:24:17Z 2008-09-23T04:26:53Z <p>Assuming feed_id = 0 is the manually entered stuff this does the trick: </p> <pre><code>select p.* from programs p left join ( select max(id) id1 from programs where feed_id &lt;&gt; 0 group by feed_id order by max(id) desc limit 10 ) t on id1 = id where id1 is not null or feed_id = 0 order by id desc limit 10; </code></pre> <p>It works cause the id column is constantly increasing, its also pretty speedy. t is a table alias. </p> <p>This was my original answer:</p> <pre><code>( select feed_id, url, dt from feeds where feed_id = '' order by dt desc limit 10 ) union ( select feed_id, min(url), max(dt) from feeds where feed_id &lt;&gt; '' group by feed_id order by dt desc limit 10 ) order by dt desc limit 10 </code></pre> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118690#118690 3 Answer by Joe Skora for MySQL Query: Select most-recent items with a twist Joe Skora 2008-09-23T01:46:43Z 2008-09-23T01:55:23Z <p>Assuming this table</p> <pre><code> CREATE TABLE feed ( feed varchar(20) NOT NULL, add_date datetime NOT NULL, info varchar(45) NOT NULL, PRIMARY KEY (feed,add_date); </code></pre> <p><strong>this query should do what you want</strong>. The inner query selects the last entry by feed and picks the 10 most recent, and then the outer query returns the original records for those entries.</p> <pre><code> select f2.* from (select feed, max(add_date) max_date from feed f1 group by feed order by add_date desc limit 10) f1 left join feed f2 on f1.feed=f2.feed and f1.max_date=f2.add_date; </code></pre> http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118722#118722 1 Answer by Doug Kaye for MySQL Query: Select most-recent items with a twist Doug Kaye 2008-09-23T01:56:54Z 2008-09-23T02:15:33Z <p>Here's the (abbreviated) table:</p> <pre><code>CREATE TABLE programs ( id int(11) NOT NULL auto_increment, feed_id int(11) NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ENGINE=InnoDB; </code></pre> <p>And here's my query based on sambo99's concept:</p> <pre><code>(SELECT feed_id,id,timestamp FROM programs WHERE feed_id='' ORDER BY timestamp DESC LIMIT 10) UNION (SELECT feed_id,min(id),max(timestamp) FROM programs WHERE feed_id&lt;&gt;'' GROUP BY feed_id ORDER BY timestamp DESC LIMIT 10) ORDER BY timestamp DESC LIMIT 10; </code></pre> <p>Seems to work. More testing needed, but at least I understand it. (A good thing!). What's the enhancement using the 'id' column?</p>