mysql如何改表的字符集
导读
mysql改表的字符集的方法:
--修改表的编码为utf8
alter table store_warehouse convert to character set utf8;
--查看表中每个字段的字符集
show full fields from store_warehouse;
评论(0)
导读
mysql改表的字符集的方法:
--修改表的编码为utf8
alter table store_warehouse convert to character set utf8;
--查看表中每个字段的字符集
show full fields from store_warehouse;