Re: Migration from INFORMIX to POSTGRESQL

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Re: Migration from INFORMIX to POSTGRESQL
Дата
Msg-id hm36t9$183$1@dough.gmane.org
обсуждение исходный текст
Ответ на Migration from INFORMIX to POSTGRESQL  (Atif Jung <atifjung@gmail.com>)
Список pgsql-novice
Atif Jung, 24.02.2010 12:56:
> The problem I'm having is that on compilation I get the following error:
> ERROR: syntax error at or near "pattern".
> The pattern column in table name_link has entries like:
> " *I[0-Z] [0-Z] [0-Z] [0-9]* "
> Any help and advice would be greatly appreciated.
> Thank you.

IN will require a list of values supplied (e.g. IN (1,2,3) or IN ('one', 'two', 'three).

It has nothing to do with regular expression.

You want to either use the regexp_matches() function or the MATCHES operator:
http://www.postgresql.org/docs/current/static/functions-matching.html

So something like:

SELECT code, priority INTO :acCode, :acPriority
FROM name_link
WHERE regexp_matches(:acHostFormat, pattern)
ORDER BY priority;

Thomas

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

Предыдущее
От: Atif Jung
Дата:
Сообщение: Migration from INFORMIX to POSTGRESQL
Следующее
От: Jasen Betts
Дата:
Сообщение: Re: Migration from INFORMIX to POSTGRESQL