Guest User

Untitled

a guest
Jan 19th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. OperationalError(1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
  2.  
  3. ALTER TABLE table_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
  4.  
  5. [client]
  6. default-character-set=utf8
  7. [mysqld]
  8. character_set_client=utf8
  9. character_set_server=utf8
  10. collation_server=utf8_unicode_ci
  11.  
  12. 'OPTIONS': {
  13. 'read_default_file': 'full path to cnf file'
  14. }
Add Comment
Please, Sign In to add comment