Skip to content

Instantly share code, notes, and snippets.

@samuell
Last active March 26, 2020 14:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuell/a952a95610cadae568bf to your computer and use it in GitHub Desktop.
Save samuell/a952a95610cadae568bf to your computer and use it in GitHub Desktop.
SELECT node.title,timestamp,node_revisions.body
FROM node
LEFT JOIN node_revisions ON node.vid=node_revisions.vid
INTO OUTFILE '/tmp/nodes.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