Exporting from MySQL indicating ',' terminator : Export « Backup Load « SQL / MySQL






Exporting from MySQL indicating ',' terminator

  
USE <database_name>;
SELECT *
INTO OUTFILE "<file_name.csv>"
FIELD TERMINATED BY ','
FROM <table_name>;

           
       








Related examples in the same category

1.Exporting from MySQL
2.Exporting from MySQL indicating the terminator