How can I find all products without images in Magento?

前端 未结 10 696
Happy的楠姐
Happy的楠姐 2020-12-18 03:39

I have some thousand products and want to find all products without an image. I tried to search for (no image) in the admin products grid, but no result. How can I make an S

10条回答
  •  伪装坚强ぢ
    2020-12-18 03:56

    for product without small image try this

    select * from catalog_product_entity_varchar WHERE attribute_id = 86 AND value = 'no_selection'
    

    find attribute_id in eav_attribute table

提交回复
热议问题