Skip to content

Instantly share code, notes, and snippets.

@MickaelBergem
Created February 10, 2015 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MickaelBergem/e237cd2632e97bf3add2 to your computer and use it in GitHub Desktop.
Save MickaelBergem/e237cd2632e97bf3add2 to your computer and use it in GitHub Desktop.
Export MySQL results to a CSV file
SELECT order_id,product_name,qty
FROM orders
INTO OUTFILE '/tmp/orders.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment