Skip to content

Instantly share code, notes, and snippets.

@bmakowski
Created May 25, 2018 11:39
Show Gist options
  • Save bmakowski/86810a3ca32f8a516830e1b82d5f7050 to your computer and use it in GitHub Desktop.
Save bmakowski/86810a3ca32f8a516830e1b82d5f7050 to your computer and use it in GitHub Desktop.
WordPress SQL delete all WooCommerce customers
delete
u,um
from wp_users u
join wp_usermeta um on um.user_id = u.id
where um.meta_key = 'wp_user_level' and um.meta_value = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment