0
yii 1.1.7如何使用CDbCriteria和CActiveDataProvider在1請求中爲相關表中的計算行數進行子查詢?yii如何在1請求中爲相關表中的計算行數進行子查詢?
在笨,我寫這樣的:
$CategoryFactory = ORM::factory('category');
$CategoryFactory->select(DB::expr( ' (select count(*) from `tour` where `tour`.`category_id` = `category`.`id`) as related_tours_count '));
...
$category_result= $CategoryFactory->find_all();
有沒有類似的方式在警予1.1.7?