程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Yii - relations數據關聯中的統計功能

Yii - relations數據關聯中的統計功能

編輯:關於PHP編程

關聯查詢,Yii 也支持所謂的統計查詢(或聚合查詢)。 它指的是檢索關聯對象的聚合信息,例如每個 post 的評論的數量,每個產品的平均等級等。 統計查詢只被 HAS_MANY(例如,一個 post 有很多評論) 或 MANY_MANY (例如,一個 post 屬於很多分類和一個 category 有很多 post) 關聯對象執行。
執行統計查詢非常類似於之前描述的關聯查詢。我們首先需要在 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'),
        );
    }
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved