Skip to content

Instantly share code, notes, and snippets.

@peter-mcconnell
Created January 10, 2014 21:09
Show Gist options
  • Select an option

  • Save peter-mcconnell/8362652 to your computer and use it in GitHub Desktop.

Select an option

Save peter-mcconnell/8362652 to your computer and use it in GitHub Desktop.
MySQL Output table to csv
SELECT
fielda, fieldb
FROM
tbla
INTO OUTFILE
'/tmp/data.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