Re: Query with Parameters and Wildcards

From: landsharkdaddy <ldodd(at)landsharksoftware(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Query with Parameters and Wildcards
Date: 2009-04-27 14:19:47
Message-ID: 23257346.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


When I try the following like you suggested I get an error that says
"operator does not exist: || unknown

SELECT customercellphone, customercity, customerdatecreated,
customerdatelastmodified, customeremail, customerfax, customerfirstname,
customerid, customerlastname, customermiddleinitial, customerphone,
customerreferredby, customerstateabbr, customerstreet1, customerstreet2,
customersuffix, customertitle, customerworkphone, customerworkphoneext,
customerzip FROM lanemanager.customers WHERE (customerlastname ILIKE || '%')

landsharkdaddy wrote:
>
> I have a query that works on SQL Server to return customers that contain
> the string entered by the user by accepting parameters and using the LIKE
> keyword. I would like to move this to postgreSQL but I'm just not sure how
> to get it done. This is the query
>
> SELECT * FROM Customers WHERE FirstName LIKE @custfirst + '%';
>
> This works great on SQL Server but not on postgreSQL. Any help would be
> appreciated.
>

--
View this message in context: http://www.nabble.com/Query-with-Parameters-and-Wildcards-tp23248274p23257346.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message dayat 2009-04-27 14:47:40 Re: Query with Parameters and Wildcards
Previous Message Mario Splivalo 2009-04-27 11:40:59 Re: Query with Parameters and Wildcards