删除所有未使用的属性选项

时间:2011-07-28 17:56:51

标签: tsql magento

尝试从magento 1.4.2存储中删除所有未使用的属性选项。我错过了什么联盟?

编辑:我从错误的表中删除了吗?

delete eaov
from eav_attribute_option_value eaov
inner join eav_attribute_option eao on eaov.option_id = eao.option_id
inner join eav_attribute ea on ea.attribute_id = eao.attribute_id
left join catalog_product_index_eav ce 
    on ce.attribute_id = ea.attribute_id  and ce.value = eaov.option_id
where ce.entity_id is null

1 个答案:

答案 0 :(得分:0)

检查以下评论以获得正确答案。