Re: how to escape _ in select - Mailing list pgsql-sql

From Thomas Kellerer
Subject Re: how to escape _ in select
Date
Msg-id i2r9ss$gt0$1@dough.gmane.org
Whole thread Raw
In response to how to escape _ in select  (Wes James <comptekki@gmail.com>)
List pgsql-sql
Wes James, 28.07.2010 19:35:
> I'm trying to do this:
>
> select * from table where field::text ilike '%\_%';
>
> but it doesn't work.
>
> How do you escape the _ and $ chars?
>
> The docs say to use \, but that isn't working.
>
> ( http://www.postgresql.org/docs/8.3/static/functions-matching.html )
>
> The text between '%...%' can be longer, I'm just trying to figure out
> how to escape some things.  I've found that ' works with '' and \
> works with \\
>

To get around the somewhat quirky usage of backslashes, you can simply define a different esacpe character:

select *
from table
where field::text ilike '%@_%' escape '@';

Thomas




pgsql-sql by date:

Previous
From: Dmitriy Igrishin
Date:
Subject: Re: how to escape _ in select
Next
From: Rainer Stengele
Date:
Subject: Re: grouping subsets