Re: Sorting CSV string and removing Duplicates - Mailing list pgsql-general

From Chris Mair
Subject Re: Sorting CSV string and removing Duplicates
Date
Msg-id 35e29ba3c267816a0b78ac4f48bc357d@smtp.hushmail.com
Whole thread Raw
In response to Sorting CSV string and removing Duplicates  (Alex Magnum <magnum11200@gmail.com>)
List pgsql-general
> Hello,
>
> I have a csv string in a text field that is unsorted and contains
> duplicates.
> Is there a simple way to remove these and sort the string.
>
> E.g
> 2,18,20,23,1,27,1,2,8,16,17,18,20,22,23,27
>
> i tried string to array and unique but that did not work...
> Any suggestions on how to do this without writing a function?
>
> Any help is appreciated.
>
> Thanks
> A


chris=# SELECT distinct x::int from
unnest(string_to_array('2,18,20,23,1,27,1,2,8,16,17,18,20,22,23,27',
',')) x order by x::int;

 x
----
  1
  2
  8
 16
 17
 18
 20
 22
 23
 27
(10 rows)

Bye,
Chris.




pgsql-general by date:

Previous
From: Yves Dorfsman
Date:
Subject: Re: Sorting CSV string and removing Duplicates
Next
From: dinesh kumar
Date:
Subject: Re: Sorting CSV string and removing Duplicates