From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: delete non-unique |
Date: | 2007-04-25 11:26:48 |
Message-ID: | 20070425112648.GE12260@a-kretschmer.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
am Wed, dem 25.04.2007, um 13:08:15 +0400 mailte henlin folgendes:
> hello.
>
>
> i need to clean up some tables: from several equal rows keep only one
> (like `sort -u`)
You can create a new table as select distinct from the original table
and rename both tables properly.
Other solution, i demonstrate with an example:
test=*# select ctid,* from doubles ;
ctid | id | name
-------+----+------
(0,1) | 1 | foo
(0,2) | 1 | foo
(0,3) | 2 | bar
(0,4) | 2 | bar
(0,5) | 2 | bar
(0,6) | 3 | batz
(0,7) | 3 | batz
(0,8) | 3 | batz
(8 rows)
test=*# delete from doubles where ctid not in (select distinct on (id, name) ctid from doubles );
DELETE 5
test=*# select ctid,* from doubles ;
ctid | id | name
-------+----+------
(0,1) | 1 | foo
(0,3) | 2 | bar
(0,6) | 3 | batz
(3 rows)
The ctid-column is a hidden column with an unique value within this
table.
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
From | Date | Subject | |
---|---|---|---|
Next Message | Frank Bax | 2007-04-25 13:01:12 | Re: Comparison of dates |
Previous Message | henlin | 2007-04-25 09:08:15 | delete non-unique |