(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.
|
|
|||||||
|
|
|
Assuming feed_id = 0 is the manually entered stuff this does the trick:
It works cause the id column is constantly increasing, its also pretty speedy. t is a table alias. This was my original answer:
|
||||||||||
|
|
|
You probably want a union. Something like this should work:
|
||||
|
|
|
MySQL doesn't have the greatest support for this type of query. You can do it using a combination of "GROUP-BY" and "HAVING" clauses, but you'll scan the whole table, which can get costly. There is a more efficient solution published here, assuming you have an index on group ids: http://www.artfulsoftware.com/infotree/queries.php?&bw=1390#104 (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). |
|||
|
|
|
|
Would it work to group by the field that you want to be distinct? SELECT url, feedid FROM urls GROUP BY feedid ORDER BY timestamp DESC LIMIT 10; |
||||||
|
|
|
Assuming this table
this query should do what you want. 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.
|
|||
|
|
|
Here's the (abbreviated) table:
And here's my query based on sambo99's concept:
Seems to work. More testing needed, but at least I understand it. (A good thing!). What's the enhancement using the 'id' column? |
|||
|
