$criteria=new CDbCriteria();
$criteria->with = array('reviewCount', 'category10', 'category20', 'category30', 'town');
$criteria->select = 't.id,business,street,postalCode,contactNo,checkinCount,count(tbl_abc.id) as spcount';
$criteria->join = 'left join tbl_abc on t.id=tbl_abc.businessId';
$criteria->group = 't.id';
$criteria->order = 'spcount DESC';
$criteria->condition='spcount>1';
$bizModel = new CActiveDataProvider(Business::model(), array(
'criteria' => $criteria
));
我得到這個錯誤:條件在Yii框架標準PHP的
Column not found: 1054 Unknown column 'spcount' in 'where clause'
如果我省略了查詢通過spcount工作正常&訂單業務的條件。那麼,如何重寫這個查詢,讓我得到所有的賬號超過1的企業?
有工作。但是這有一個問題。 $ bizModel-> getTotalItemCount()是613,這實際上是忽略過濾器spcount> 1的記錄總數。但否則顯示過濾結果。因爲我使用Clistview所以它創建分頁問題。當它只有7-8個記錄時,它顯示7頁的分頁。 – iThink 2012-03-23 18:48:36
@iThink你不能重寫'getTotalItemCount'來應用過濾器嗎? – galymzhan 2012-03-23 19:09:21
查看不使用過濾器,即$ criteria-> having ='spcount> 1'getTotalItemCount = 163。並且使用filter getTotalItemCount應該是8,因爲它顯示8條記錄,但getTotalItemCount是163 – iThink 2012-03-23 19:24:57