Home » Archive by tag 'character set'
a_connect on January 14th, 2010

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;

Continue reading about Converting MySQL tables to UTF-8