Re: [GENERAL] select from pipe-delimited field

Поиск
Список
Период
Сортировка
От Arjen Nienhuis
Тема Re: [GENERAL] select from pipe-delimited field
Дата
Msg-id AANLkTikHkHuK4mddB33GaztkqEEZrrZiaN0+iz43LEZb@mail.gmail.com
обсуждение исходный текст
Ответ на select from pipe-delimited field  (san man <neelakash21@gmail.com>)
Ответы Re: [GENERAL] select from pipe-delimited field  (san man <neelakash21@gmail.com>)
Список pgsql-novice
On Tue, Aug 24, 2010 at 12:44 AM, san man <neelakash21@gmail.com> wrote:
Hello all,

I am trying to do a SELECT operation with a WHERE condition. However, the column with which I am trying to do the comparison has several values which are pipe-delimited. I want to return a match(true) if the WHERE condition matches any of the bar-delimited values.

For example, SELECT id WHERE synonyms = 'word';

Here synonyms is a pipe-delimited field and I want to match "word" with any of the values of the synonyms fields.


SELECT id FROM t WHERE 'word' = ANY(regexp_split_to_array(synonyms, '[|]'));
 
With postgres it's possible to make an index on regexp_split_to_array(synonyms, '[|]')) for some extra speed. But its better to store the synonyms as an array in the first place.

Thanks in advance.

Neel

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

Предыдущее
От: David Fetter
Дата:
Сообщение: Re: [GENERAL] select from pipe-delimited field
Следующее
От: san man
Дата:
Сообщение: Re: [GENERAL] select from pipe-delimited field