Skip to content
Home » MySQL

MySQL

Converting MySQL tables to UTF-8

Quick and easy code to convert the character set of a MySQL table to UTF-8. Of course this works for all character sets not just UTF ALTER TABLE tbl_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;