1. 程式人生 > >解決ERROR 1406 (22001): Data too long for column 'name' at row 1錯誤

解決ERROR 1406 (22001): Data too long for column 'name' at row 1錯誤

一、我的操作流程:

1.在liunx中使用vim編輯器編輯並儲存txt文字

2.匯入MySQL

mysql> LOAD DATA INFILE '/var/lib/mysql-files/pet.txt' INTO TABLE pet;

出現:ERROR 1406 (22001): Data too long for column 'name' at row 1錯誤

二、判斷可能是vim製表符問題

1.更換gedit編輯器

2.編輯文字時使用table鍵分隔每一列

三、再次嘗試匯入TXT文字

mysql> LOAD DATA INFILE '/var/lib/mysql-files/pet.txt' INTO TABLE pet;

Query OK, 1 row affected (0.04 sec)
Records: 1  Deleted: 0  Skipped: 0  Warnings: 0

自此,問題解決!