Learning SQL. Have a simple table games with field title. I want to search based on title. If I have a game called Age of Empires III: Dynasties, and I use
Age of Empires III: Dynasties
COLLATE UTF8_GENERAL_CI will work as ignore-case. USE:
COLLATE UTF8_GENERAL_CI
SELECT * from games WHERE title COLLATE UTF8_GENERAL_CI LIKE 'age of empires III%';
or
SELECT * from games WHERE LOWER(title) LIKE 'age of empires III%';