Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Created March 3, 2014 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrsweaters/9331643 to your computer and use it in GitHub Desktop.
Save mrsweaters/9331643 to your computer and use it in GitHub Desktop.
convert mysql database to utf 8
ALTER DATABASE databasename CHARACTER SET utf8 COLLATE utf8_general_ci;
ALTER TABLE tablename CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment