PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Rimozione di righe duplicate in PostgreSQL con più colonne

Ecco un'opzione

DELETE FROM votes T1
    USING   votes T2
WHERE   T1.ctid < T2.ctid 
    AND T1.voter = T2.voter 
    AND T1.election_year  = T2.election_year;

Vedi http://sqlfiddle.com/#!15/4d45d/5