1,John,Smith,jsmith@gmail.com 2,Andrea,Steelman,andi@murach.com 3,Joel,Murach,joelmurach@yahoo.com
mysql> load data local infile "users.csv" into table junk; Query OK, 3 rows affected, 12 warnings (0.00 sec) Records: 3 Deleted: 0 Skipped: 0 Warnings: 12 mysql> select * from junk; +----+------+------+------+ | id | fn | ln | em | +----+------+------+------+ | 0 | NULL | NULL | NULL | | 2 | NULL | NULL | NULL | | 3 | NULL | NULL | NULL | +----+------+------+------+ 3 rows in set (0.00 sec) mysql> exit;