DeveloperBreeze

Mysql Tools Development Tutorials, Guides & Insights

Unlock 1+ expert-curated mysql tools tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your mysql tools skills on DeveloperBreeze.

Data Import and Export in MySQL

Tutorial August 12, 2024
mysql

SELECT * FROM your_table_name
INTO OUTFILE '/path/to/export.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
  • /path/to/export.csv: The file where the data will be exported.