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
| delete from wp_posts | |
| where post_status in ('auto-draft', 'trash') | |
| or post_type = 'revision'; | |
| delete from wp_postmeta | |
| where not exists (select 'x' from wp_posts where wp_posts.ID = wp_postmeta.post_id); |
コメントを残す