Subject | RE: [firebird-support] convert field to lower/upper case in where clause |
---|---|
Author | Nigel Weeks |
Post date | 2005-02-10T00:02:42Z |
> trouble is I'm not sure how to convert a field to lower case.You've almost got it!
> to get the gist of what I am trying to acheive I have
> included the where
> clause below -- which does not work.
>
> select * from tblTest
> where LCASE(tblTest.first_name) = 'james'
>
select * from tblTest where lower(tblTest.first_name) = 'james';
Nige.
ps. I think the lower() and upper() are (still) UDF's, so remember to
declare the external functions if they don't work. I could be wrong on
this...!!!
[Non-text portions of this message have been removed]