Mark writes:
> Is it possible to execute a query using a where clause that allows case
> insensitive comparison between a field and text.
select * from account where upper(username) = upper('test')
(Upper used because, as has been remarked on this list and in other places,
folding from richer character sets is likely to get better matches this way).
And yes, you can create an index on upper(fieldname).
Dan