Subject | RE: [IBDI] Porting from MS SQL Server 7.0 to Interbase |
---|---|
Author | Claudio Valderrama C. |
Post date | 2000-06-24T19:57:48Z |
But it's a problem.
Upper() will only work properly if facing a field with the right collation,
otherwise only ASCII characters in the range ['a','z'] are uppercased.
C.
Upper() will only work properly if facing a field with the right collation,
otherwise only ASCII characters in the range ['a','z'] are uppercased.
C.
> -----Original Message-----
> From: Ungod [mailto:ungod@...]
> Sent: Sábado 24 de Junio de 2000 11:01
>
> err, issue 1 is a no-brainer.
>
> select * from mytable where UPPER(myfield) = somevalue
>
> or even
>
> select * from mytable where UPPER(field1) = UPPER(field2)
>
> --
> Ungod (W.King)