MySQL Query: Select most-recent items with a twist - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:00:18Zhttp://stackoverflow.com/feeds/question/118487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist2MySQL Query: Select most-recent items with a twistDoug Kaye2008-09-23T00:50:14Z2008-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#1185230Answer by Aeon for MySQL Query: Select most-recent items with a twistAeon2008-09-23T00:59:44Z2008-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-1Answer by SquareCog for MySQL Query: Select most-recent items with a twistSquareCog2008-09-23T01:04:57Z2008-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?&bw=1390#104" rel="nofollow">http://www.artfulsoftware.com/infotree/queries.php?&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#1185630Answer by don for MySQL Query: Select most-recent items with a twistdon2008-09-23T01:08:14Z2008-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#1186213Answer by Sam Saffron for MySQL Query: Select most-recent items with a twistSam Saffron2008-09-23T01:24:17Z2008-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 <> 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 <> ''
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#1186903Answer by Joe Skora for MySQL Query: Select most-recent items with a twistJoe Skora2008-09-23T01:46:43Z2008-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#1187221Answer by Doug Kaye for MySQL Query: Select most-recent items with a twistDoug Kaye2008-09-23T01:56:54Z2008-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<>'' 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>