码迷,mamicode.com
首页 > 其他好文 > 详细

magento产品eav笔记【持续跟新...】

时间:2014-06-15 17:35:57      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:magento

//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笔记【持续跟新...】,布布扣,bubuko.com

magento产品eav笔记【持续跟新...】

标签:magento

原文地址:http://blog.csdn.net/cstopery/article/details/30455577

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!