Skip to content

Instantly share code, notes, and snippets.

View nboaldin's full-sized avatar
🖖

Nathan Boaldin nboaldin

🖖
View GitHub Profile
@nboaldin
nboaldin / blah.sql
Created August 12, 2023 18:14
Find and Delete Users Without Orders from WooCommerce
/**
* Find the users first. Added a limit of 1000 to reduce the size of the query.
*/
SELECT
*
FROM
wp_users
WHERE
wp_users.ID NOT IN (SELECT
meta_value