2012-03-05 5 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! ='구성 가능 ' – benmarks