codice:
SELECT *
FROM articoli
where codice IN(
      select codice 
      from articoli
      group by codice
      having count(*) > 1)
order by codice