Hi,
Please find the output of the simple query :
sfa_db=> select upper('å');
upper
-------
å
(1 row)
PostGRESql doesn't convert the special characters like Å, Ò, etc into their lower case when using function lower and vice-versa when using upper.
Neha