Uit de MySQL-handleiding , dit doet de truc:
SELECT a1.id
FROM Articles a1
LEFT JOIN Articles a2 ON a1.articleId = a2.articleId AND a1.version < a2.version
WHERE a2.articleId IS NULL;
Uit de gekoppelde handleiding:
(Ik heb de tekst aangepast zodat deze overeenkomt met uw situatie.)