如何在 yii 1.1.7 中使用 CDbCriteria 和 CActiveDataProvider 在 1 个请求中为计算相关表中的行数进行子查询?
在 CodeIgniter 中,我写道:
$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();
yii 1.1.7 中是否有类似的方法?