首页 > 代码库 > magento产品eav笔记【持续跟新...】
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;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。