Linux--mysql5.7中的中文字符报错问题
今天想用在mysql中插入数据,但是报这个错误:
1366, "Incorrect string value: '\\xE5\\x8D\\x971' for column 'Cbuilding' at row 1")
解决方法:
查看你的数据库、该表以及该列的编码格式
若是你在创建表的时候没有设置默认编码格式为utf8的话,他会默认为latin1
修改该列的字符编码:
alter table &...
原创
2019-04-21 19:54:36 ·
414 阅读 ·
0 评论