Heim  >  Artikel  >  Datenbank  >  mysql中文提示Incorrect string value: xB1xB1xBExA9

mysql中文提示Incorrect string value: xB1xB1xBExA9

WBOY
WBOYOriginal
2016-06-07 17:51:461047Durchsuche

本文章介绍mysql中文提示Incorrect string value: xB1xB1xBExA9错误,有需要的朋友可以参考一下下。

选项default-charaset-set=utf8;

然后创建一个数据表 create table a_table(b varchar(255) not null);

insert into a_table values('北京');

这个时候插入的是中文,系统会报告错误:Incorrect string value: 'xB1xB1xBExA9' for column 'b' at;

这个不能插入中文。如果该语句写在了一个文本文件中进行批处理操作,保存的编码是默认的话也会出现这种的错误提示。

解决办法:把文本文件存成utf-8格式的就可以正确执行。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn