Answers for "how to use load data infile in mysql without having the full path of the path"

SQL
4

mysql load data infile csv

LOAD DATA LOCAL INFILE 'abc.csv' INTO TABLE abc
FIELDS TERMINATED BY ',' 
ENCLOSED BY '"' 
LINES TERMINATED BY 'n'
IGNORE 1 LINES
(col1, col2, col3, col4, col5...);
Posted by: Guest on February-06-2020

Code answers related to "how to use load data infile in mysql without having the full path of the path"

Code answers related to "SQL"

Browse Popular Code Answers by Language