From: | Thomas Kellerer <spam_eater(at)gmx(dot)net> |
---|---|
To: | pgsql-novice(at)postgresql(dot)org |
Subject: | Re: Migration from INFORMIX to POSTGRESQL |
Date: | 2010-02-24 12:43:32 |
Message-ID: | hm36t9$183$1@dough.gmane.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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
From | Date | Subject | |
---|---|---|---|
Next Message | Alex Hunsaker | 2010-02-24 23:46:32 | Re: How to get the permissions assigned to user? |
Previous Message | Atif Jung | 2010-02-24 11:56:59 | Migration from INFORMIX to POSTGRESQL |