Php SQL数据库中的产品未显示在Shopware 5产品概述中

Php SQL数据库中的产品未显示在Shopware 5产品概述中,php,shopware,Php,Shopware,当我转到我的phpMyAdmin数据库时,我导入的产品会显示出来,但它们不会显示在我的Shopware管理面板中。知道问题出在哪里吗?当您没有在s_articles_attributes表中创建相应的属性时,情况就是这样 INSERT INTO `s_articles_attributes` (`articleID`, `articledetailsID`) SELECT d.articleID, d.id FROM `s_articles_details` d LEFT JOIN `s_art

当我转到我的phpMyAdmin数据库时,我导入的产品会显示出来,但它们不会显示在我的Shopware管理面板中。知道问题出在哪里吗?

当您没有在s_articles_attributes表中创建相应的属性时,情况就是这样

INSERT INTO `s_articles_attributes` (`articleID`, `articledetailsID`)
SELECT d.articleID, d.id
FROM `s_articles_details` d
LEFT JOIN `s_articles_attributes` at
ON at.articledetailsID = d.id
WHERE at.id IS NULL;