Subject | RE: [firebird-support] How to specify which UPPER() to be called |
---|---|
Author | Dmitry Yemanov |
Post date | 2003-06-23T11:00:22Z |
Peter,
Dmitry
> Then the statements:select c from t where UPPER(c) = UPPER('FьЯe' collate de_de);
> SQL> insert into t values ('FьЯe');
> SQL> select c from t where UPPER(c) = UPPER('FьЯe');
>
> No row will be selected, because UPPER(c) uppercases
> 'ь' to 'Ь', whereas UPPER('FьЯe') doesn't.
>
> Is there a way to specify which UPPER should be called for
> UPPER('FьЯe'), so that the expected result can be achieved?
Dmitry