红联Linux门户
Linux帮助

ubuntu下MySQL键值不支持中文解决办法

发布时间:2015-10-05 19:09:17来源:linux网站作者:Huang兄

ubuntu下MySQL新建数据库表,表名支持中文,但是键值中文乱码不显示,可在创建表的末尾设置字符编码:

default character set utf8;


例如:

create table test (姓名 varchar(255) not null) default character set utf8;

insert into test value("张三");

select 姓名 from test;

这时不会出现乱码;


可以用  show full columns from test 命令来查看表test的默认字符编码,若不指定则为默认的latin1_swedish_ci,指定编码之后utf8_general_ci ;


Linux安装Redis键值数据库服务器:http://www.linuxdiyf.com/linux/10769.html

fedora下mysql不能显示中文:http://www.linuxdiyf.com/linux/13331.html

解决MySQL中文乱码的问题:http://www.linuxdiyf.com/linux/12305.html