The easiest way to provide case-insensitive LIKE is to use something like this:
LOWER(column_name) LIKE LOWER(pattern) UPPER(column_name) LIKE UPPER(pattern)
Or you can use case-town / down-case pattern outside of SQL and just use:
LOWER(column_name) LIKE down_cased_pattern UPPER(column_name) LIKE up_cased_pattern
I usually use LOWER out of habit, as a simpler option is easier to read and therefore easier to debug.
mu is too short
source share