ERROR 1366 (HY000): Incorrect string value: '\xE4\xB8\xAD\xE5\x9B\xBD' for column 'tname' at row 1

时间:2022-10-29 17:09:03

在mysql中插入中文字段的时候会提示下面报错


mysql> insert into tutors values(32,'中国','M',21);

ERROR 1366 (HY000): Incorrect string value: '\xE4\xB8\xAD\xE5\x9B\xBD' for column 'tname' at row 1


这是由于没有设置编码


mysql> set names latin1;
Query OK, 0 rows affected (0.00 sec)

(latin1可以用gdk等编码)