Case insensitive "contains" search

Поиск
Список
Период
Сортировка
От Wim Ceulemans
Тема Case insensitive "contains" search
Дата
Msg-id 000301be02a8$fc8aaae0$67faa8c0@aladdin.nice.be
обсуждение исходный текст
Список pgsql-general
Hi

A 'contains' search in postgreSQL is:

select * from tablex where name = '%test%';

When I want exactly the same but case insensitive, how do I do that? By
searching through the mail archive I came up with:

select * from tablex where name ~* 'test';

But this is not quite the same because it also finds for example 'tempest',
whereas the like search does not find it. So is there a postgreSQL operator
that does the same as the like %% search but case insensitive?


Regards
Wim Ceulemans
Nice bvba



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

Предыдущее
От: Constantin Teodorescu
Дата:
Сообщение: Does "constraint" and "check" work in 6.3.2 ?
Следующее
От: "Michael A. Koerber SR"
Дата:
Сообщение: RE: [GENERAL] Creating web images from postgres data