According to the MySQL documentation you should be able to export to data to CSV files:
The mysqldump command can also generate output in CSV, other delimited text, or XML format.
But the document doesn't reveal how? Can anybody help?
According to the MySQL documentation you should be able to export to data to CSV files:
The mysqldump command can also generate output in CSV, other delimited text, or XML format.
But the document doesn't reveal how? Can anybody help?
SELECT * FROM `database_name`.`table_name` INTO OUTFILE 'path_to_folder/filename.csv' FIELDS ENCLOSED BY '"' TERMINATED BY ';' ESCAPED BY '"' LINES TERMINATED BY '\r\n';"
This is how you do it.