MySQL 1366错误
SQL Error: 1366: Incorrect string value: "\xE8\xAF\xA6\xE7\xBB\x86…" for column "address" at row 1 ;
错误1366的解决方法
操作方法
- 01
解决办法:检查数据库此字段的字符集与整理字符集是否与SQL语句传递数据的字符集相同;不相同则会引发MySQL1366错误
- 02
1. #检查数据表所有字段的状态 2. ->show full columns from phplamp; 3. #发现address字段的Collation项非utf8,修改它! 4. ->alter table phplamp change name name varchar(100) character set utf8 collate utf8_unicode_ci not null default '';
- 03
修改完字段的字符集后可以再使用show full columns from table_name命令检查一下,以确保万无一失。假如您的SQL字符集为GBK或是GB2312或是其它的话,只需要将数据表字段的字符集更改为其相应的编码即可。
赞 (0)