Answers for "mysql copy query to csv file"

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
-1

export mysql table to file

mysqldump db_name tbl_name;
Posted by: Guest on July-01-2020

Code answers related to "mysql copy query to csv file"

Code answers related to "SQL"

Browse Popular Code Answers by Language