I am running a production application with MySQL database server. I forget to set column\'s collation from latin
to utf8_unicode
, which results in
CAUTION! Some problems are solved via
ALTER TABLE ... CONVERT TO ...
Some are solved via a 2-step process
ALTER TABLE ... MODIFY ... VARBINARY...
ALTER TABLE ... MODIFY ... VARCHAR...
If you do the wrong one, you will have a worse mess!
SELECT HEX(col), col ...
to see what you really have.