show/hide this revision's text 2 edited title

MySQL Query: Select most-recent items across two tableswith a twist

show/hide this revision's text 1

MySQL Query: Select most-recent items across two tables

(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.