Skip to content

Instantly share code, notes, and snippets.

@ianthekid
Created February 25, 2015 06:18
Show Gist options
  • Select an option

  • Save ianthekid/b1d17a6208589dd1d421 to your computer and use it in GitHub Desktop.

Select an option

Save ianthekid/b1d17a6208589dd1d421 to your computer and use it in GitHub Desktop.
Delete orphan wp_postmeta rows
SELECT *
FROM wp_postmeta pm
LEFT JOIN wp_posts wp ON wp.ID = pm.post_id
WHERE wp.ID IS NULL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment