Re: Finding duplicated values - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: Finding duplicated values
Date
Msg-id 20041021130815.Y66555@megazone.bigpanda.com
Whole thread Raw
In response to Finding duplicated values  ("Kent Anderson" <kenta@ezyield.com>)
List pgsql-sql
On Thu, 21 Oct 2004, Kent Anderson wrote:

> I have a few tables that have duplicated values from an import from a
> different database. I have two keys I tried to set as primary and got an
> error
> ERROR:  could not create unique index
> DETAIL:  Table contains duplicated values.
>
> Is there some join I can use to compare the hmhmkey, wmwmkey pairs against
> the table to find duplicate values? Each pair key should be unique but the
> old database was less than normalized.

Maybe
SELECT hmhmkey, wmwmkeyFROM exceptionsGROUP BY hmhmkey, wmwmkeyHAVING count(*)>1;


pgsql-sql by date:

Previous
From: "Kent Anderson"
Date:
Subject: Finding duplicated values
Next
From: Dmitry Tkach
Date:
Subject: Trouble with explicit joins