Magento - Finding simple products with no configurable products -


recently ran in problem has been driving me spare, within magento, system have 4.5k simple products, how find ones not assigned configurable groups? has else run in this?

you can query

select * catalog_product_entity entity_id not in ( select product_id catalog_product_super_link ) , type_id = 'simple' 

Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -