unicode - In MySQL how can I tell what character set a particular table is using? -
i have large mysql table think might using wrong character set. if i'll need change using
alter table mytable convert character set utf8
but since large table, i'd rather not run command unless have to. question is, how can ask mysql character set on particular table?
i can call status
in mysql see database's character set, doesn't mean tables have same character set, right?
try:show create table my_table;
Comments
Post a Comment