Skip to content

Instantly share code, notes, and snippets.

@abrader
Created December 3, 2012 17:46
Show Gist options
  • Save abrader/4196680 to your computer and use it in GitHub Desktop.
Save abrader/4196680 to your computer and use it in GitHub Desktop.
MySQL to CSV example
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