Re: Simple like filter - Mailing list pgsql-novice

From Greg Stark
Subject Re: Simple like filter
Date
Msg-id 407d949e0908270817n118fe0eck91860d3cab30e1f7@mail.gmail.com
Whole thread Raw
In response to Simple like filter  (Ruzsinszky Attila <ruzsinszky.attila@gmail.com>)
List pgsql-novice
On Thu, Aug 27, 2009 at 11:39 AM, Ruzsinszky
Attila<ruzsinszky.attila@gmail.com> wrote:
> 11111_123456 (varchar(20))
>
> I would like a where like SQL command.
> I tried this: like E'11\_%' -> wrong!
> like E'11\_______' -> good (with 7 piece of _ characters!)

You either want E'11\\_%' or you want '11\_%' with
standard_conforming_strings enabled. If you use E'11\_%' the backslash
is getting eaten before the like comparison even starts and the string
you're comparing with is just 11_% with _ used as a meta character.

You can also do  s LIKE '%Q_%' ESCAPE 'Q'

--
greg
http://mit.edu/~gsstark/resume.pdf

pgsql-novice by date:

Previous
From: Lennin Caro
Date:
Subject: Re: compilation error
Next
From: Steve T
Date:
Subject: Speeding up 'bulk' delete (and/or seeing what is going on while the delete is being processed)