Re: Seaching without accents

Поиск
Список
Период
Сортировка
От James M Moe
Тема Re: Seaching without accents
Дата
Msg-id 4017EBA4.4070908@sohnen-moe.com
обсуждение исходный текст
Ответ на Seaching without accents  ("Augusto Cesar Castoldi" <castoldi@npd.ufsc.br>)
Список pgsql-general
Augusto Cesar Castoldi wrote:
> How can I configure postgreSQL to search without acents?
>
> Table “test”
>
> Clumns: name , values:
> Test
> Test
> tést
> Tést
>
   Since those are actually different characters that only look the
same, you would have to use another approach:
     select * from test where name like 't_st%';
or
     select * from test where name like 'tést%' or name like 'test%' ...


--
jimoe at sohnen-moe dot com

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

Предыдущее
От: "Augusto Cesar Castoldi"
Дата:
Сообщение: Seaching without accents
Следующее
От: "Augusto Cesar Castoldi"
Дата:
Сообщение: Re: Seaching without accents