标签: magento-1.9 magento-1.8
我正在将magento版本从1.7.2升级到1.9.2项目(Mage_Catalog_Model_Category)并使用相同的ID" 235"已经存在,有人请建议这里的问题是什么?
由于
答案 0 :(得分:0)
集合具有相同的ID,因此您可以在集合末尾使用下面的代码
$collection->getSelect()->distinct(true);
OR
$collection->getSelect()->group('e.entity_id');