load text data into table
LOAD DATA INFILE '/textFileName.txt'
INTO TABLE quackers
FIELDS TERMINATED BY ';'
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES;
/*
Colons, by using ':'
Semicolons, by using ';'
Spaces, by using ' '
*/
Related examples in the same category