Re: How to remove duplicate lines but save one of the lines? - Mailing list pgsql-general

From btober@ct.metrocast.net
Subject Re: How to remove duplicate lines but save one of the lines?
Date
Msg-id 4884C18F.4040203@ct.metrocast.net
Whole thread Raw
In response to How to remove duplicate lines but save one of the lines?  ("A B" <gentosaker@gmail.com>)
List pgsql-general
A B wrote:
> I have a table with rows like this
> A 1
> A 1
> B 3
> B 3
> C 44
> C 44
> and so on.
>
> and I want it to be
> A 1
> B 3
> C 44
>
> so how can I remove the all the duplicate lines but one?
>

CREATE TEMP TABLE tmp AS SELECT DISTINCT * FROM t1;
DROP TABLE t1;
CREATE TABLE t1 AS SELECT * FROM tmp;



pgsql-general by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: How to remove duplicate lines but save one of the lines?
Next
From: brian
Date:
Subject: Re: Calling Python functions with parameters