First, if you had a date field, you'd better identify the latest entries by their date.
This will work:
SELECT topic_id, object_id, title, url, date FROM topics earlier WHERE EXISTS (SELECT newest.topic_id FROM topics newest WHERE newest.date > earlier.date AND newest.object_id = earlier.object_id)
You select rows for which another row exists with the same object_id and a later date.
Manur source share