我正在尝试禁用许多在我的 Magento 安装中没有图像的产品。
以下 SQL 查询应该获取所有没有图像的产品,但我需要一种方法将所有没有图像的产品设置为禁用状态?
SELECT * FROM catalog_product_entity_media_gallery
RIGHT OUTER JOIN catalog_product_entity
ON catalog_product_entity.entity_id = talog_product_entity_media_gallery.entity_id
WHERE catalog_product_entity_media_gallery.value is NULL