Created
October 5, 2010 20:36
-
-
Save mshuler/612283 to your computer and use it in GitHub Desktop.
export wordpress commenter info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT comment_author, comment_author_email, comment_content, comment_parent | |
INTO OUTFILE '/tmp/comment_export.csv' | |
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' | |
LINES TERMINATED BY '\n' | |
FROM wp_comments; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment