Re: Seaching without accents - Mailing list pgsql-general

From James M Moe
Subject Re: Seaching without accents
Date
Msg-id 4017EBA4.4070908@sohnen-moe.com
Whole thread Raw
In response to Seaching without accents  ("Augusto Cesar Castoldi" <castoldi@npd.ufsc.br>)
List 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 by date:

Previous
From: "Augusto Cesar Castoldi"
Date:
Subject: Seaching without accents
Next
From: "Augusto Cesar Castoldi"
Date:
Subject: Re: Seaching without accents