Re: How to use like with a list - Mailing list pgsql-general

From Gauthier, Dave
Subject Re: How to use like with a list
Date
Msg-id 482E80323A35A54498B8B70FF2B8798004D5FC885F@azsmsx504.amr.corp.intel.com
Whole thread Raw
In response to Re: How to use like with a list  (John R Pierce <pierce@hogranch.com>)
List pgsql-general
BINGO !
Thanks :-)

-----Original Message-----
From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of John R Pierce
Sent: Friday, November 18, 2011 3:47 PM
To: pgsql-general@postgresql.org
Subject: Re: [GENERAL] How to use like with a list

On 11/18/11 12:37 PM, Gauthier, Dave wrote:
> bi_dev=# select name from test where name ~ '^(' || replace('jo,mo,do,fo', ',', '|') || ')l';
> ERROR:  argument of WHERE must be type boolean, not type text

ah, needs () around the right side of the ~ expression, not sure why.
does ~ have higher expression priority than || or something?

    select name from test where name ~ ('^(' || replace(?, ',', '|') || ')l');

worked for me.



--
john r pierce                            N 37, W 122
santa cruz ca                         mid-left coast


--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

pgsql-general by date:

Previous
From: "J.V."
Date:
Subject: MS SQL Server (2005, 2008) ==> PostgreSQL 9.x
Next
From: Gavin Flower
Date:
Subject: Re: Is it ever necessary to vacuum a table that only gets inserts/updates?