Hi All
I have the below 2 queries:
--Query1 select * from table1 where lower(column1) like '%der%' --Query2 select * from table1 where column1 like '%der%'
The first query returns a result but the second query returns nothing.
I am inclined to think that this is a collation issue. Am I right?
Thanks