first question here. Been a long time lurker, really appreciate the immense help this site offers.
So, we completed the migration of a rather large system with hundreds of legacy components to UTF8. Thanks for all the fish, Latin1, but UTF8 is the future and this migration was obligatory.
So, everything works a dandy, except for LIKE searches on MySQL. I searched the other questions here but they all address the main issues of latin1 -> utf8 migration, but not searching, REGEX and LIKE....
For example, I try
SELECT * FROM CITIES WHERE NAME LIKE '%SAO PAULO%'
and get zero results
SELECT * FROM CITIES WHERE NAME LIKE '%SÃO PAULO%'
and get the expected results(note tilde on the A).
With latin1 the default collation latin1_swedish does the expected thing, considers A to be like Ã, and C to be like Ç. But with none of the UTF8 collations does this work.
What do I do? Any help will be appreciated. Thank you all and I hope to contribute to this community as much as it has contributed to my own work.
