I have the following two queries:
SELECT users.* FROM "users" WHERE (fname || lname LIKE '%james%')
SELECT users.* FROM "users" WHERE (fname || lname LIKE '%James%')
I have a record in the User Table with fname = James
The problem I'm having is the first query returns 0 results, and the 2nd returns the correct result.
I want the LIKE to be case insensitive. Ideas? Thanks