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
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