Skip to content

Instantly share code, notes, and snippets.

@roscius
Created August 18, 2014 22:02
Show Gist options
  • Select an option

  • Save roscius/f26eaf6425178324b254 to your computer and use it in GitHub Desktop.

Select an option

Save roscius/f26eaf6425178324b254 to your computer and use it in GitHub Desktop.
Export Table to CSV
SELECT * INTO OUTFILE '/tmp/result.csv'
FIELDS TERMINATED BY ',' ENCLOSED BY '"'
ESCAPED BY '\\'
LINES TERMINATED BY '\n'
FROM attributes WHERE 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment