Answers for "how to dump .csv file into mysql"

SQL
-1

how to dump .csv file into mysql

LOAD DATA LOCAL INFILE 'c:/country.csv' 
INTO TABLE country 
FIELDS TERMINATED BY ',' 
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;
Posted by: Guest on October-19-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language