SELECT a.*, b.*
FROM Items a
LEFT JOIN Votes b on a.item_id = b.item_id
and b.total_yes = (select max(total_yes)
from Votes v
where v.item_id = a.item_id)
ORDER BY a.post_date DESC, b.total_yes DESC
N.B .:nếu bạn có 2 câu trả lời cho một mục có cùng total_yes =max, bạn sẽ có 2 hàng cho mục đó.