Skip to content

Instantly share code, notes, and snippets.

@aiiddqd
Created October 29, 2018 10:39
Show Gist options
  • Select an option

  • Save aiiddqd/bf77160a0f956d2b39b775ae898f91d3 to your computer and use it in GitHub Desktop.

Select an option

Save aiiddqd/bf77160a0f956d2b39b775ae898f91d3 to your computer and use it in GitHub Desktop.
WordPress & SQL - delete commentmeta without comments
DELETE cm
FROM wp_commentmeta as cm
LEFT JOIN wp_comments as c ON c.comment_ID = cm.comment_id
WHERE c.comment_ID is null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment