修改mysql字符集

1.修改MySQL的数据库的字符集

 

alter table producttype default character set utf8 collate utf8_bin;

 

 

 

3.修改MySQL的字段的字符集

 

alter table producttype change name  varchar(128) character set utf8 collate utf8_bin not null;  

alter database shop default character set utf8 collate utf8_bin;  

 

 

2.修改MySQL的表的字符集

你可能感兴趣的:(mysql,数据库)