ref: https://www.businessbloomer.com/woocommerce-bulk-delete-orders-products-super-fast/ ref: https://www.businessbloomer.com/woocommerce-database-explained-how-it-works-and-where-to-find-data/
Created
June 3, 2021 13:40
-
-
Save CapWebSolutions/c1b4175325ea95dc990b09258937f62b to your computer and use it in GitHub Desktop.
WooCommerce: Bulk Delete Orders / Products Super Fast
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_commentmeta WHERE comment_id IN ( SELECT ID FROM wp_comments WHERE comment_type = 'order_note' ); | |
DELETE FROM wp_comments WHERE comment_type = 'order_note'; |
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_woocommerce_order_itemmeta; | |
DELETE FROM wp_woocommerce_order_items; | |
DELETE FROM wp_comments WHERE comment_type = 'order_note'; | |
DELETE FROM wp_postmeta WHERE post_id IN ( SELECT ID FROM wp_posts WHERE post_type = 'shop_order' ); | |
DELETE FROM wp_posts WHERE post_type = 'shop_order'; |
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_postmeta WHERE post_id IN ( SELECT ID FROM wp_posts WHERE post_type IN ( 'product', 'product_variation' ); | |
DELETE FROM wp_posts WHERE post_type IN ( 'product', 'product_variation' ); |
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_postmeta WHERE post_id IN ( SELECT ID FROM wp_posts WHERE post_type = 'product' AND post_status = 'trash' ); | |
DELETE FROM wp_posts WHERE post_type = 'product' AND post_status = 'trash'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment