Answers for "csv to mysql"

SQL
1

mysql output csv

-- If you are using linux,

SELECT id, filename
FROM attachments
INTO OUTFILE '/tmp/results.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY 'n';
-- and find the csv file /tmp
Posted by: Guest on January-06-2021
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
-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