且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Magento查找孤儿产品

更新时间:2023-11-30 11:45:52

我相信此SQL查询将为您提供帮助.

I believe this SQL Query will help you.

 select
    type_id,sku
 from catalog_product_entity a
 left join catalog_category_product cp on cp.`product_id` = a.entity_id
 left join catalog_product_relation cpr on cpr.child_id = a.entity_id
 where 
       cp.product_id is null 
   and cpr.parent_id is null
   and a.type_id != 'configurable' -- per ben below