Fabio's queries docet: (della serie dare a Cesare quello che e' di Cesare)...
codice:
create temporary table temp
select * from tabella
group by campo_doppio;

truncate table tabella;

INSERT INTO tabella
select * from temp;