Re: list or regular expressions

Поиск
Список
Период
Сортировка
От Mischa Sandberg
Тема Re: list or regular expressions
Дата
Msg-id 44A06BE4.8030606@ca.sophos.com
обсуждение исходный текст
Ответ на list or regular expressions  ("Rhys Stewart" <rhys.stewart@gmail.com>)
Список pgsql-general
Rhys Stewart wrote:
> Hi all,
> can i search in a list or regular expression....eg
>
> "select yadi from ya where yadiya in ('old', 'ulk', 'orb')"
>
> but instead of in ther'd be another operator or a LIKE IN.
> so it'd be a shorcut for typing yadiya ~* 'old' or yadiya ~* 'ulk' etc.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend
>

you mean, like

yadiya ~ 'old|ulk'

(or parametrically)

yadiya ~ ?::text ||'|'|| ?::text ||'|'|| ... :-)

--
Engineers think that equations approximate reality.
Physicists think that reality approximates the equations.
Mathematicians never make the connection.

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

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: RAID + PostgreSQL?
Следующее
От: John Tregea
Дата:
Сообщение: Re: Return the primary key of a newly inserted row?