MySQL Character Set and Collation issues

The solution to this error message is simple:
Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation =
Just run this:
alter database `databasename` character set utf8;
Related Posts
Tags: errors • mysql
Posted in solutions on April 24th, 2008 |
