puoi contare i record e ordinarli per la loro numerosita':
codice:
SELECT *, COUNT(commenti.*) as tot
FROM post, commenti
where post.campo = commenti.campo
group by commenti.campo
order by tot