2015-08-28 28 views
0

我是新來magento。我只想構建一個查詢,但我正在努力做。Magento加入查詢查詢使用3表

我的MySQL查詢:

SELECT `main_table`.*, `t1`.*, count(t2.review_id) AS `totalrecord`, SUM(t2.rating) AS `totalrating`, `t2`.* FROM `nbmp_vendor` AS `main_table` 
LEFT JOIN `customer_entity` AS `t1` ON main_table.customer_id = t1.entity_id 
LEFT JOIN `nbmp_review` AS `t2` ON main_table.customer_id = t2.vendor_id 
WHERE ((vendor_status = '1')) AND (t1.group_id = '4') group by main_table.vendor_id 

我曾嘗試在Magento:

<?php 
    class Blazedream_TopVendors_Block_Monblock extends Mage_Core_Block_Template { 

public function methodblock() { 

    $myTable = "customer_entity"; 
    $myTable1 = "nbmp_review"; 
    $collection = Mage::getModel('topvendors/topvendors')->getCollection() 
          ->addFieldToFilter(array('vendor_status'), array('1')) 
          ->setOrder('vendor_id','asc'); 

    $collection->getSelect() 
      ->joinLeft(array("t1" => $myTable), "main_table.customer_id = t1.entity_id") 
      ->where("t1.group_id = '4'"); 

    $collection->getSelect() 
      ->columns('count(t2.review_id) AS totalrecord') 
      ->columns('SUM(t2.rating) AS totalrating') 
      ->joinLeft(array("t2" => $myTable1), "main_table.customer_id = t2.vendor_id") 
      ->group("main_table.vendor_id"); 
    echo $collection->getselect(); die; 
     $ddata = $collection->getData(); 
     $i = 0; 
     foreach($ddata as $data) 
     { 

     $retour[$i]['id'] = $data->getData('vendor_id'); 
     $retour[$i]['name'] = $data->getData('vendor_name'); 
     $retour[$i]['vendor_slug'] = $data->getData('vendor_slug'); 
     // $retour[$i]['rating_avg'] = $vendors[$data->getData('vendor_id')]['rating_avg']; 
     $retour[$i]['totalrating'] = $data->getData('totalrating'); 
     $retour[$i]['rating_avg'] = $data->getData('totalrating')/$data->getData('totalrecord'); 
     $i++; 

    } 
    // Mage::getSingleton('adminhtml/session')->addSuccess('Cool Ca marche !!'); 
    return $retour; 
} 
} 

我得到的唯一錯誤。

Fatal error: Call to undefined method Blazedream_TopVendors_Model_Mysql4_TopVendors_Collection::group() in magento 

任何人都可以幫助我形成? 在此先感謝。

+1

你能用錯誤信息更新你的問題嗎? – Muk

+0

好的。只需一分鐘。 – tttt

+0

我已更新..請參考錯誤的查詢。 – tttt

回答

1

請試試以下內容,看看它是否對您有所幫助。

$myTable  = "customer_entity"; 
$myTable1 = "nbmp_review"; 
$collection = Mage::getModel('topvendors/topvendors')->getCollection() 
         ->addFieldToFilter(array('vendor_status'), array('1')) 
         ->setOrder('vendor_id','asc');       

$collection->getSelect()->group('vendor_id'); // TRY THIS LINE OF CODE 

$collection->getSelect() 
     ->joinLeft(array("t1" => $myTable), "main_table.customer_id = t1.entity_id") 
     ->where("t1.group_id = '4'"); 

$collection->getSelect() 
     ->columns('count(t2.review_id) AS totalrecord') 
     ->columns('SUM(t2.rating) AS totalrating') 
     ->joinLeft(array("t2" => $myTable1), "main_table.customer_id = t2.vendor_id"); 
+0

$ collection-> getSelect() - > group('main_table.vendor_id'); //這只是正確的..但我仍然無法檢索和打印查看頁面。 – tttt

+0

@tttt你在哪裏運行這個查詢? – Muk

+0

只在塊中,等待我編輯代碼。 – tttt