Possible Duplicate:
Make Oracle SQL LIKE query case insensitive
I want to do string comparison in SQL-Statements that ignore case. Currently we use something like upper(field) like upper(anotherField)
and something like that. However this approach is known to fail the Turkey test, isn't it? How to do it the right way?