Per visualizzare i doppioni fai questa query
codice:
select * from attore
group by nome
having count(nome) > 1
Con questa ti crei una tabella di nome attore2 che abbia la stessa struttura della tabella attore
codice:
create table attore2 like attore
e con questa nella nuova tabella ti ritrovi tutti i nominativi distinti.
codice:
insert into attore2(
SELECT * from attore GROUP BY nome);
Poi magari la struttura della tua tabella sarebbe da rivedere, tipo usare due campi distinti per nome e cognome eccetera.