0

我有两张桌子;历史和用户。我需要显示如下数据:


编号 | 用户名 | 最新创建的帖子 | 首次创建的帖子

id 和 username 的数据来自 users 表,最后创建和首次创建的 post 数据来自历史记录。我需要查看所有用户,他们最近创建的帖子和他们第一个创建的帖子。请帮我制作控制器并查看谢谢

4

2 回答 2

0

下面试试。

<?php
    $users = $this->User->find('all',array
    (
        'conditions' => array
        (
            //conditions goes here
        ),
        'fields' => array
        (
            'User.id',
            'User.username',
            'History.Lastest created Post',
            'History.First created Post'
        )
    ));
?>
于 2013-02-28T03:56:38.613 回答
0

假设 'User' 和 'History' 表之间的关系是一对一的,并且 History 表中有一个 'user_id' 列,您可能需要在 History模型中指定它们之间的关系,例如:

   var $hasOne = array(
     'User' => array(
            'className' => 'User',
            'foreignKey' => 'user_id',
            'conditions' => '',
            'fields' => '',
            'order' => ''
       )
    );

然后,您需要执行joins此操作。例如,在您的User模型中的某处,尝试这样的操作:

 class User extends AppModel {    

        ....  

       function getAllUsersHistory{

             $allHistories = $this->find('all', array(
                'joins' => array(
                    'table' => 'history',
                    'alias' => 'HistoryJoin'
                    'type' => 'INNER',
                    'conditions' => array(
                        // your conditions, for example: 'History.user_id' => 'User.id'
                    )
                ),  
                'fields' => array(
                    'User.id', 
                    'User.username', 
                    'History.lastest_created_post', 
                    'History.first_created_post'
                )           
             ));   

          return $allHistories; 

         }

         .....

    }
于 2013-02-28T09:45:54.523 回答