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
ध्यान दें:यदि आपके पास किसी आइटम के लिए 2 उत्तर समान Total_yes =max के साथ हैं, तो आपके पास उस आइटम के लिए 2 पंक्तियाँ होंगी।