Looking for a bit more explanation from question asked here:
I've looked over the doc on MySQL however I'm looking for bit simpler terms as things aren't making sense on the site. I don't understand what:
LOAD DATA INFILE 'file.csv'
INTO TABLE t1
(column1, @dummy, column2, @dummy, column3, ...)
FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAPED BY '"'
LINES TERMINATED BY '\r\n';`
the @dummy's are for?
If i have columns a,b,c and data for those how would I insert it limiting only those?
Thank you