Re: Remove Duplicate Words from a field

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Remove Duplicate Words from a field
Дата
Msg-id BANLkTikVwLSUe_fwEo4sGvSht2j2HeO63w@mail.gmail.com
обсуждение исходный текст
Ответ на Remove Duplicate Words from a field  (Sukuchha Shrestha <sukuchha@yahoo.de>)
Ответы Re: Remove Duplicate Words from a field
Список pgsql-general
Hello

2011/5/16 Sukuchha Shrestha <sukuchha@yahoo.de>:
> Dear All,
> I am new to Postgresql. I have a field with lots of  dublicate words and i
> want to remove any dublicate word from that field.
> For example, if i have a field with a string " one, one, two, two, three",
> how would i get " one, two, three" only ?
> Any help is much apprecieated !
> Sukuchha


postgres=# CREATE OR REPLACE FUNCTION uniq_worlds(text)
RETURNS text AS $$
SELECT array_to_string(ARRAY(SELECT DISTINCT trim(x) FROM
unnest(string_to_array($1,',')) x),', ')
$$ LANGUAGE sql;
CREATE FUNCTION
Time: 14.281 ms
postgres=# SELECT uniq_worlds('one, two, three, one');
   uniq_worlds
─────────────────
 three, two, one
(1 row)

Time: 0.817 ms

Regards

Pavel Stehule

В списке pgsql-general по дате отправления:

Предыдущее
От: Kalai R
Дата:
Сообщение: Postgre Installation Problem
Следующее
От: Sukuchha Shrestha
Дата:
Сообщение: Re: Remove Duplicate Words from a field