PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Removendo linhas duplicadas no PostgreSQL com várias colunas


Aqui está uma opção
DELETE FROM votes T1
    USING   votes T2
WHERE   T1.ctid < T2.ctid 
    AND T1.voter = T2.voter 
    AND T1.election_year  = T2.election_year;

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