Re: How to match percent sybmol in LIKE operator?

Поиск
Список
Период
Сортировка
От Holger Klawitter
Тема Re: How to match percent sybmol in LIKE operator?
Дата
Msg-id 3A63015E.4C6CBFC2@klawitter.de
обсуждение исходный текст
Ответ на How to match percent sybmol in LIKE operator?  (Sergey Filatov <fs@ibis.odessa.ua>)
Список pgsql-general
Sergey Filatov wrote:
>
> Greetings.
>
> My problem is to find percent character in some field.
> I'm wonder how specify percent character or other wildcard characters
> in 'LIKE patterns'?
>
> Many thanks in advance,
> Sergey.

You have escape them with the backslash. In order to pass the backslash
to the backend you have to escape the backslash as well:

select * from xxx where yyy like '\\%';

It might be a good idea to point this out in the Postgresql book :-)

With kind regards,
    Holger Klawitter
--
Holger Klawitter
holger@klawitter.de                             http://www.klawitter.de

В списке pgsql-general по дате отправления:

Предыдущее
От: Sergey Filatov
Дата:
Сообщение: How to match percent sybmol in LIKE operator?
Следующее
От: "rob"
Дата:
Сообщение: Re: converting .xls to delimited file