Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation
Problem is related to character sets & collation type of table so
simply change the table charater set & collation type
Use the following command :
alter table <table_name> convert to character set utf8 collate utf8_unicode_ci;
or you can chage it manually :
Go to option> and then go to option > Table Options > Collation
Change it to ” utf8_unicode_ci ”
your problem is solved
.
Advertisements