删除所有magento产品属性

发布于 2024-11-08 10:56:32 字数 70 浏览 0 评论 0原文

从 magento 中删除所有属性选项的最快方法是什么?我指的是导入时创建的存储的多选选项/下拉项目。

谢谢。

What is the fastest way to delete all attribute options from magento. I'm refering to the stored multi-select options / drop down items that are created when importing.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南冥有猫 2024-11-15 10:56:32

最简单的方法是直接运行 sql 命令:

DELETE options FROM eav_attribute AS attribute INNER JOIN eav_attribute_option AS options ON attribute.attribute_id = options.attribute_id WHERE attribute.entity_type_id = 4 

其中“4”是catalog_product 的entity_type_id(在 eav_entity_type 表中仔细检查该值以获取entity_code 'catalog_product')

The easiest way is to run direct sql command:

DELETE options FROM eav_attribute AS attribute INNER JOIN eav_attribute_option AS options ON attribute.attribute_id = options.attribute_id WHERE attribute.entity_type_id = 4 

Where "4" is the entity_type_id for catalog_product (double check this value in your eav_entity_type table for entity_code 'catalog_product')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文