codice:
select * from 
(
SELECT *,count(nome) as quanti from tabella GROUP BY nome HAVING quanti > 1
) as tabella2
inner join tabella on tabella.nome = tabella2.nome
order by tabella.nome