Last active
March 16, 2018 08:42
-
-
Save tschifftner/465b668f4c6a134bb083fccc0cd69383 to your computer and use it in GitHub Desktop.
Get all products not assigned to a category (Magento)
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 cpe.entity_id, cpe.sku | |
FROM catalog_product_entity as cpe | |
LEFT JOIN catalog_category_product as ccp on cpe.entity_id = ccp.product_id | |
WHERE category_id IS NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment