Re: INSTR() like function?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: INSTR() like function?
Дата
Msg-id 28785.971387426@sss.pgh.pa.us
обсуждение исходный текст
Ответ на INSTR() like function?  ("Michael Loftis" <taos@activesw.com>)
Ответы RE: INSTR() like function?  ("Michael Loftis" <taos@activesw.com>)
Список pgsql-general
"Michael Loftis" <taos@activesw.com> writes:
> IE are the characters A or B or C or D in the string "dogma" would be
> INSTR('ABCD','dogma');

See the regular-expression match operators (~ and ~*).  The above would
be
    select  'dogma'::text ~* '[ABCD]'::text;
assuming you meant you wanted case-insensitive match.

            regards, tom lane

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

Предыдущее
От: Nelson Brito
Дата:
Сообщение: Problem whith Stored queries
Следующее
От: Michelle Murrain
Дата:
Сообщение: GUIs, OSes and related