Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Created March 3, 2014 18:40
Show Gist options
  • Select an option

  • Save mrsweaters/9331643 to your computer and use it in GitHub Desktop.

Select an option

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