Re: How to remove duplicate lines but save one of the lines?

Поиск
Список
Период
Сортировка
От Raymond O'Donnell
Тема Re: How to remove duplicate lines but save one of the lines?
Дата
Msg-id 4884AE2E.8060305@iol.ie
обсуждение исходный текст
Ответ на How to remove duplicate lines but save one of the lines?  ("A B" <gentosaker@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: "A B"
Дата:
Сообщение: How to remove duplicate lines but save one of the lines?
Следующее
От: Said Ramirez
Дата:
Сообщение: Re: How to remove duplicate lines but save one of the lines?