2012-03-05 6 views

答えて

1

このSQLクエリはあなたに役立つと思います。

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 
+0

設定可能な...とa.type_id!= 'configurable'を除外する必要があります – benmarks