你的表结构是如何的?
mysql> create table test(col001 varchar(12) ,col002 varchar(12),
    -> col003 varchar(12),col004 varchar(12));
Query OK, 0 rows affected (0.09 sec)mysql> load data infile "C:/test.txt" into table test fields terminated by '|' lines terminated by '\r\n';
Query OK, 1 row affected (0.02 sec)
Records: 1  Deleted: 0  Skipped: 0  Warnings: 0mysql> select * from test;
+--------+--------+--------+--------+
| col001 | col002 | col003 | col004 |
+--------+--------+--------+--------+
| aaaaa  | NULL   | bbbb   | cccc   |
+--------+--------+--------+--------+
1 row in set (0.00 sec)