In MySQL I use the LIKE syntax in a SELECT ... WHERE query to look for a name the user submits.
However if the table contains the name "TEST", and the user searches for "test" or "Test", it doesn't return it.
If the user submitted "es" the like part would actually be:
LIKE '%es%'
Any way I can make such a search case-insensitive?