我是Magento的实习生和新手。我觉得我已经开始掌握一切,但数据库访问功能对我来说仍然不是非常直观,除了MySQL不是我最强大的技能。
现在,我正在创建一个模块,在后端,将显示一个自定义表,其中包含表'eav_attribute'中包含'frontend_label'的行和来自'eav_attribute_option_value'的'value'。我的表本身有对attribute_id和option_id的外键引用,是我将列连接到表的方法。
如果为单个商店存储属性,我的查询可以正常工作。问题是'eav_attribute_option_value'为每个store_id都有重复的属性/选项对。也就是说,多个商店条目会导致我的表显示每个属性选项对的重复条目(我只希望每个属性选项对显示一次)。我想在我的查询中添加一个约束,以便下面的查询只返回属性选项对的唯一条目(实际上,忽略了属性/选项对在'eav_attribute_option_value'中重复的事实,因为它们是为每个选项存储的STORE_ID)。我的询问如下,但我希望有人可以指出我正确的方向,因为我目前卡住了。
谢谢大家!
protected function _prepareCollection()
{
$collection = Mage::getModel('landing/management')->getCollection();
$collection->getSelect()
->join(array('eavattr' => 'eav_attribute'),'eavattr.attribute_id = main_table.attribute_id')
->join(array('opt'=>'eav_attribute_option_value'),'opt.option_id = main_table.option_id')
->reset(Zend_Db_Select::COLUMNS)
->columns(array('*'))
->columns(array('frontend_label'),'eavattr')
->columns(array('value'),'opt');
$this->setCollection($collection);
return parent::_prepareCollection();
}
答案 0 :(得分:2)
我找到了答案,我能够通过“frontend_label”和“value”进行分组,以避免在这种情况下重复输入。就我而言,代码现在变成了:
$collection->getSelect()
->join(array('eavattr' => 'eav_attribute'),'eavattr.attribute_id = main_table.attribute_id')
->join(array('opt'=>'eav_attribute_option_value'),'opt.option_id = main_table.option_id')
->reset(Zend_Db_Select::COLUMNS)
->columns(array('*'))
->columns(array('frontend_label'),'eavattr')
->columns(array('value'),'opt')
->group('frontend_label','value');