浏览文章

文章信息

Magento2 SQLSTATE[42S22]: Column not found: 1054 Unknown column 'entity_value.value' in 'field list' 13923


报错:SQLSTATE[42S22]: Column not found: 1054 Unknown column 'entity_value.value' in 'field list'


1、数据库数据错乱引起

select * from catalog_product_super_attribute WHERE attribute_id=0

2、修改attribute_id为正常值,例如我修改为

UPDATE `catalog_product_super_attribute` SET `attribute_id` = '177' WHERE `catalog_product_super_attribute`.`product_super_attribute_id` = 370;


原创