Saari Development

MySQL : Find out and change charset of a table

Posted in mysql by imsaar on January 10th, 2008

show create table TABLE_IN_QUESTION;
-- show create table can tell you more than
-- describe TABLE_IN_QUESTION including database engine
-- look towards the end for CHARSET=XXX
alter table TABLE_IN_QUESTION CONVERT TO CHARACTER SET latin1;

Leave a Reply