1.创建table的时候使用utf8编码
create table tablename (
id int NOT NULL,
content var_char(250) NOT NULL,
CONSTRAINT tablename PRIMARY_KEY(id)
) character set = utf8;
2.修改已经有的table的编码
alter table table_name convert to character set utf8;
alter table entries modify title mediumtext character set utf8;
3.如何查看一个database,一个table的编码
show create database webpy;
show create table entries2;
4.修改mysql的配置文件
mysql的配置目录为/etc/mysql
mysql使用的配置文件为
/etc/mysql/my.cnf
在my.cnf最后 include了 conf.d/ 下面所有的*.cnf文件
在conf.d/下面加上自己的配置文件wy_sql.cnf
[mysqld]
character-set-server=utf8
[client]
default-character-set=utf8