Created
December 23, 2019 17:56
-
-
Save ccurtin/4e25cefe31894da7097ec96bb97fc296 to your computer and use it in GitHub Desktop.
Get Dupliate WooCommerce Skus
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
SELECT meta_value | |
FROM wp_postmeta | |
WHERE meta_key = '_sku' | |
AND meta_value != '' | |
GROUP BY meta_value HAVING COUNT(meta_value) > 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment