1Convert file in .csv
2CREATE TABLE (name of the table you insert data in)(
3columns
4);
5
6LOAD DATA INFILE "path\\name.csv" INTO TABLE (name of the table you insert data in)
7FIELDS TERMINATED BY "fields terminated by"
8LINES TERMINATED BY "lines terminated by"
9IGNORE (how many lines to ignore) LINES
10(columns)