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

From Raymond O'Donnell
Subject Re: How to remove duplicate lines but save one of the lines?
Date
Msg-id 4884AE2E.8060305@iol.ie
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
On 21/07/2008 16:33, 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?

You could copy them into a new table, like so:

CREATE TABLE newtable AS
SELECT DISTINCT * FROM oldtable;


Ray.

------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------

pgsql-general by date:

Previous
From: "A B"
Date:
Subject: How to remove duplicate lines but save one of the lines?
Next
From: Said Ramirez
Date:
Subject: Re: How to remove duplicate lines but save one of the lines?