Skip to content

Instantly share code, notes, and snippets.

@gustavobgama
Created January 28, 2014 18:27
Show Gist options
  • Save gustavobgama/8673284 to your computer and use it in GitHub Desktop.
Save gustavobgama/8673284 to your computer and use it in GitHub Desktop.
Save result of a query to CSV file
SELECT
*
FROM
table
INTO OUTFILE
'/tmp/file.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