For et relateret produkt bruger Magento catalog_product_link
tabel.
I den har du produkt-id , relateret produkt og linktype .
For at se alle linktyper kan du tjekke catalog_product_link_type
tabel.
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)
;
Mere omfattende information kan findes med dette link:online Database Diagramværktøj dedikeret til Magento eCommerce CE Edition