Bạn có thể sử dụng một cái gì đó như thế này:
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);
Hãy thử cú pháp này để triển khai nó.