Ok, I think this can be helpful for many programmers. That's why I want to share what I did finally:
$options = array(
'fields' => array(
'Exam.id',
'Exam.name',
'Syllabuses.id',
'Syllabuses.name',
'Syllabuses.exam_id',
'Syllabuses.syllabus',
'Syllabuses.last_updated'
),
'recursive' => 0,
'conditions' => array('Exam.id = Syllabuses.exam_id'),
'limit' => 3
);
$this->paginate = $options;
$syllabuses = $this->Paginator->paginate('Exam');
manpreet
Best Answer
2 years ago
Each exam has one syllabus, each syllabus has one exam. So, I did this in the Exam model:
From
UsersController
I did this:And in a method in
UsersController
I wanted to call paginate:exams table:
and syllabuses table:
So, I got some error. Like this:
And my SQL that CakePHP prepared is:
But what I want is something like the query bellow. I have tested it in mysql: