LoginSignup
1
1

More than 5 years have passed since last update.

wordpress のデータを mysql から csv に出力

Posted at
SELECT p.ID, p.post_name, p.post_title
FROM wp_posts AS p
INTO OUTFILE '/tmp/wp_posts.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';

参考:
http://stackoverflow.com/questions/356578/how-to-output-mysql-query-results-in-csv-format

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1