Skip to content

Instantly share code, notes, and snippets.

@kobaatsu
Last active October 3, 2019 04:15
Show Gist options
  • Save kobaatsu/b9114044c78ff765520301de9e9a18da to your computer and use it in GitHub Desktop.
Save kobaatsu/b9114044c78ff765520301de9e9a18da to your computer and use it in GitHub Desktop.
# 例2017年01月01日 00時00分00秒より、古い記事を削除
DELETE FROM wp_posts WHERE post_date < '2017-01-01 00:00:00';
# 最小の記事IDを確認し、メモを取る
select ID,post_date from wp_posts ORDER BY ID ASC limit 5 ;
# wp_postmetaテーブルからのデータ削除(最小の記事IDが140679の場合)
DELETE FROM wp_postmeta WHERE post_id < 140679;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment