Originariamente inviato da sorella
Anche così dovrebbe funzionare:

select * from
(select codice, count(codice) as conteggio from articoli group by codice)
where conteggio > 1


Ciao ciao
Se aggiungi un alias di tabella sì

codice:
select * from
(select codice, count(codice) as conteggio from articoli group by codice) as tab
where conteggio > 1
Ma perchè scomodare le query annidate.