数据库中表及字段的编码设置
1.设置数据库表的编码
---alter table 表名 default character set utf8;
在设置完表的编码后,使用 show create table 表名;查询编码格式。
可能你会发现表中列的编码格式仍然没有发生改变,因此需要改变列的编码格式。
2.设置表中字段的编码格式
---alter table 表名 change 字段名 字段名 字段的数据类型 character set utf8;
eg.alter table product change cid cid VARCHAR(50) character set utf8;