Sorry, the name is no more. I have a database of media file URLs that come from two sources:
(1) RSS feeds and (2) manual entries.
I want to find the ten most recently added URLs, but not more than one from any feed. To simplify, table ' urls' has columns 'url, feed_id, timestamp'.
feed_id='' for any URL that was manually entered.
How do I write a request? Remember, I want the ten most recent URLs, but only one of all feed_id.
source
share