Currently, We have a table similar to this:
--------------------- ID | AField | BField| ---------------------
The ID is Auto Increment
If you have only a small number of columns, you can just name them: LOAD DATA LOCAL INFILE 'myfile.txt' INTO TABLE mytable (AField); (assuming only ID & AField)
LOAD DATA LOCAL INFILE 'myfile.txt' INTO TABLE mytable (AField);