magento产品eav笔记持续跟新...
Posted lcchuguo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了magento产品eav笔记持续跟新...相关的知识,希望对你有一定的参考价值。
//magento把产品信息分在子表中,最顶上的表是catalog_product_entity,仅仅包含产品的信息(SKU) //表eav_attribute,这张表在magento里为全部不 同的实体存储了全部的属性 //注意entity_type_id,每个实体都有entity_type_id。catalog_product_entity中的记录值都是10 //在eav_entity_type表中存着全部entity实体的id值 //eav_attribute_set表中存全部属性集的值 //magento在eav_attribute表中使用backend_type记录,能够找到产品属性的backend_type //以下简单的查询 entity_id(product_id)为2的产品的name属性值 SELECT e.entity_id AS product_id, var.value AS product_name FROM b2c_catalog_product_entity e, b2c_eav_attribute eav, b2c_catalog_product_entity_varchar var WHERE e.entity_type_id = eav.entity_type_id AND eav.attribute_code = 'name' AND eav.attribute_id = var.attribute_id AND var.entity_id = e.entity_id AND e.entity_id = 2;
以上是关于magento产品eav笔记持续跟新...的主要内容,如果未能解决你的问题,请参考以下文章
sql 用于选择Magento实体EAV属性及其值的一系列查询。这里有很多联盟......