Можете да използвате нещо подобно:
select threadID, postID, positionID, url
from your_table where
threadID in
(select * from (select distinct threadID from your_table order by threadID desc limit 10) as tab_alias);
Опитайте този синтаксис, за да го приложите.