Re: backslashes in queries containing LIKE - Mailing list pgsql-general

From Michael Fuhr
Subject Re: backslashes in queries containing LIKE
Date
Msg-id 20050126161555.GA83314@winnie.fuhr.org
Whole thread Raw
In response to backslashes in queries containing LIKE  (Mickael Faivre-Macon <faivrem@gmail.com>)
Responses Re: backslashes in queries containing LIKE  (Mickael Faivre-Macon <faivrem@gmail.com>)
List pgsql-general
On Wed, Jan 26, 2005 at 02:44:40PM +0100, Mickael Faivre-Macon wrote:

> We have a problem with backslashes in queries containing LIKE.
>
> insert into table (field) values ('IM\\test')
> select * from table where field = 'IM\\test'
>
> returns one record
>
> select * from table where field LIKE 'IM\\%'
>
> returns no record

See the "Pattern Matching" section in the "Functions and Operators"
chapter of the documentation:

http://www.postgresql.org/docs/8.0/static/functions-matching.html

The documentation under "LIKE" discusses issues regarding the escape
character (the backslash by default).

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-general by date:

Previous
From: "Frank D. Engel, Jr."
Date:
Subject: Export a column in a view without "announcing" it?
Next
From: Michael Fuhr
Date:
Subject: Re: Size of data stored in bytea record?