After upgrading to MySQL 4.1 from 4.0 I have a customer that when he makes a search it returns different results depending if the word starts with Upper or Lower case. (He would like a search for John or john to return the same results).
Does anyone have an idea on how to fix this?
Example:
SELECT id FROM latin_news where id>'0' AND sp_text LIKE '%john%' (returns 0 results)
SELECT id FROM latin_news where id>'0' AND sp_text LIKE '%John%' (returns 3 results)