1
カテゴリや設定可能な製品に関連付けられていないすべての製品の一覧を表示する簡単な方法はありますか?Magento find anphan products
カテゴリや設定可能な製品に関連付けられていないすべての製品の一覧を表示する簡単な方法はありますか?Magento find anphan products
この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
設定可能な...とa.type_id!= 'configurable'を除外する必要があります – benmarks