Magento如何将产品组键入数据库中的产品

时间:2012-02-24 05:39:00

标签: mysql magento

从SQL查询中我需要知道magento如何将相关产品与实际产品本身相关联。我阅读了很多有关如何使用php

的有用提示
$collection = Mage::getModel('catalog/product')
->getCollection()
->addAttributeToSort('name', 'ASC');

但我需要知道如何使用mysql将这些组标识为id。

1 个答案:

答案 0 :(得分:5)

对于相关产品,Magento使用 catalog_product_link 表。

其中包含产品ID 相关产品链接类型

要查看所有链接类型,您可以查看 catalog_product_link_type 表。

SELECT link.link_id, link.product_id, link.linked_product_id, link.link_type_id, type.code 
FROM catalog_product_link link 
  LEFT JOIN catalog_product_link_type type ON link.link_type_id = type.link_type_id
WHERE 
  code = 'super' -- grouped products
  AND linked_product_id IN (123456) -- child simple product(s)
;

通过此链接可以找到更多信息: online Database Diagram Tool dedicated to Magento eCommerce CE Edition