I want to filter my columns with a like in select clause, the default like in MySQL is case-insensitive, but I want it to be case-sensitive. How to do it?
I want this query:
select * from my_table where column1 like '%abc%'
and this query:
select * from my_table where column1 like '%Abc%'
to give different results.
MySQL :: MySQL 5.6 Reference Manual :: C.5.5.1 Case Sensitivity in String Searches (emphasis added)