有人可以告诉我如何在magento中进行联接
问题在于:
<?//kleurtjes
$collection= Mage::getModel('faq/faq')->getCollection();
$collection->getSelect()->join(array('faqcat' => $this->getTable('faqcat/faqcat')), 'faqcat.faqcat_id=faq.faqcat_id' , array('faqcat.*'));
?>
我正在尝试使用表faqcat进行连接,其中我使用密钥faqcat_id。
进一步我想要选择faqcat.name + faq.faq_id这些是我想在colums中使用的值。
<?
protected function _prepareColumns()
{
$this->addColumn('faq_id', array(
'header' => Mage::helper('faq')->__('ID'),
'align' =>'right',
'width' => '50px',
'index' => 'faq_id',
));
$this->addColumn('name', array(
'header' => Mage::helper('faqcat')->__('Titel'),
'align' =>'left',
'index' => 'name',
));
}
?>
尝试了1000种组合之后,我不知道该怎么办......谁愿意帮助我
这是完整的功能:
<?
protected function _prepareCollection()
{
$collection= Mage::getModel('faq/faq')->getCollection();
//$collection->getSelect()->join(array('faqcat' => $this->getTable('faqcat/faqcat')), 'faqcat.faqcat_id=faq.faqcat_id' , array('faqcat.*'));
$id = Mage::getModel('customer/session')->getCustomer()->getId();
$this->setCollection($collection);
// }
return parent::_prepareCollection();
}
?>
只是为了清楚这是我想要的sql,但接着是magento方式
<?//kleurtjes
SELECT faq.faq_id as id, faqcat_name as name
FROM faq
JOIN faqcat
USING ('faqcat_id')
?>
答案 0 :(得分:5)
试试这个:
$collection->getSelect()
->join($this->getTable('faqcat/faqcat'), "faqcat.faqcat_id = main_table.faqcat_id", array(faqcat.*));
您可以通过以下方式查看实际运行以获取集合的SQL:
Mage::log($collection->getSelect()->__toString());
Varien_Db_Select类基于Zend_Db_Select,因此Zend documentation是一个很好的参考。
答案 1 :(得分:5)
我刚刚开始开发magento扩展(爱它),这是我必须从两个表中显示网格的第二部分。 (噢)。 但是在上网之后并没有那么容易,我通过这样做实现了我的结果。
$collection = Mage::getModel('linkdirectory/linkdirectory')->getCollection();
$resource = Mage::getSingleton('core/resource');
$collection->getSelect()
->join(
array('lk'=>$resource->getTableName('linkdirectory/linkcategory')),
'lk.cat_id = main_table.cat_id',
array('lk.cat_title','lk.cat_id')
);
/ *我正在展示这个* /
/ SELECT main_table
。,lk
。cat_title
,lk
。cat_id
FROM linkdirectory
AS {{1} } INNER JOIN main_table
AS linkcategory
ON lk.cat_id = main_table.cat_id * /
/ *打印当前查询* /
$收藏 - &GT; printlogquery(真);出口;