[GENERAL] case insensitive search with greek characters

2004-08-15 Thread Giannis Vrentzos
Hi all, I 'm testing postgres 8.0 beta 1 an i have the following problem. I have a field with value Γιάννης. If i execute the following query it does not returns any rows. select * from test where descr ilike '%γιαννης%' if i change the query to select * from test where descr ilike '%γιάννης%' e

[GENERAL] Case insensitive search

2004-04-23 Thread Dragan Matic
Is there a way to set up collation order to be case-insensitive? I.E. I need to have a column c with value 'ABC' and when I do a "select * from table where c = 'abc'" it finds the row with value 'ABC'. Yes, I know that I can do it with "lower()" and "upper()" functions, but is there a way to con