1

好的,如果一个学生属于一个课程,而课程又属于一个学校:

存储/获取学校所有学生人数的最佳方法是什么?

我最近发现了 counterCache 但这只有在学生直接属于学校时才有效。我正在考虑通过在 foreach 循环中添加所有课程学生来进行手动计数。有没有更简洁的方法?

我最好在学校表中存储一个 student_count 字段,因为这就是我存储学校所有其他计数(课程、模块、讲师)的方式,但这可能是我挑剔的强迫症开始了。

4

1 回答 1

0

根据您的问题,尝试以下代码:

function test(){
    $this->loadModel('Student');        
    $joins = array(
            array(
                'table' => 'courses',
                'alias'  => 'Course',
                'type'  => 'LEFT',
                'conditions' => array('Course.id = Student.course_id')
            ),
            array(
                'table' => 'schools',
                'alias'  => 'School',
                'type'  => 'LEFT',
                'conditions' => array('School.id = Course.school_id')
            ),
        );

        $school_wise_student_count = $this->Student->find('all', array('fields'=>array('count(Student.id) as total_student','School.name as school_name'), 'joins'=>$joins, 'group'=>array('Course.school_id')));
        pr($school_wise_student_count);
        die;

}
于 2013-07-18T04:39:25.140 回答