Voor een gerelateerd product gebruikt Magento catalog_product_link
tafel.
Daarin heb je product-ID , gerelateerd product en linktype .
Om alle linktypes te zien, kun je de catalog_product_link_type
. raadplegen tafel.
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)
;
Meer uitgebreide informatie is te vinden via deze link:online Database Diagramtool speciaal voor Magento eCommerce CE-editie