Yii - relations数据关联中的统计功能_PHP教程
执行统计查询非常类似于之前描述的关联查询。我们首先需要在 CActiveRecord 的 relations() 方法中声明统计查询。
[html]
class Post extends CActiveRecord
{
public function relations()
{
return array(
'commentCount'=>array(self::STAT, 'Comment', 'post_id'),
'categoryCount'=>array(self::STAT, 'Category', 'post_category(post_id,category_id)'),
);
}
}
class Post extends CActiveRecord
{
public function relations()
{
return array(
'commentCount'=>array(self::STAT, 'Comment', 'post_id'),
'categoryCount'=>array(self::STAT, 'Category', 'post_category(post_id,category_id)'),
);
}
}关联查询命名空间
关联查询也可以和 命名空间一起执行。有两种形式。第一种形式,命名空间被应用到主模型。第二种形式,命名空间被应用到关联模型。
下面的代码展示了如何应用命名空间到主模型。
$posts=Post::model()->published()->recently()->with('comments')->findAll();
这非常类似于非关联的查询。唯一的不同是我们在命名空间后使用了 with() 调用。 此查询应当返回最近发布的 post和它们的评论。
下面的代码展示了如何应用命名空间到关联模型。
$posts=Post::model()->with('comments:recently:approved')->findAll();
上面的查询将返回所有的 post 及它们审核后的评论。注意 comments 指的是关联名字,而 recently 和 approved 指的是 在 Comment 模型类中声明的命名空间。关联名字和命名空间应当由冒号分隔。
命名空间也可以在 CActiveRecord::relations() 中声明的关联规则的 with 选项中指定。在下面的例子中, 若我们访问 $user->posts,它将返回此post 的所有审核后的评论。
[html]
class User extends CActiveRecord
{
public function relations()
{
return array(
'posts'=>array(self::HAS_MANY, 'Post', 'author_id', 'with'=>'comments:approved'),
);
}
}
class User extends CActiveRecord
{
public function relations()
{
return array(
'posts'=>array(self::HAS_MANY, 'Post', 'author_id', 'with'=>'comments:approved'),
);
}
}
上一篇: 直接用php的header发送404错误页面的方法实例
下一篇: Minor3路由、控制器、视图
推荐阅读
-
Yii - relations数据关联中的统计功能_PHP教程
-
Yii中的数据库事务的使用方法小结_PHP教程
-
解析PHP的Yii框架中cookie和session功能的相关操作,yiicookie_PHP教程
-
详细解读PHP的Yii框架中登陆功能的实现,yii框架_PHP教程
-
如何在smarty中增加类似foreach的功能自动加载数据_PHP教程
-
Yii - relations数据关联中的统计功能_PHP教程
-
如何在smarty中增加类似foreach的功能自动加载数据_PHP教程
-
php实现数组中索引关联数据转换成json对象的方法,数据转换json_PHP教程
-
php+mysql 获取数据库中的记录(特别是高效的分页功能)_PHP教程
-
Yii中的relations数据关联查询及统计功能用法详解