Cake php查询限制,返回起始记录no和total no records

时间:2018-05-22 04:44:38

标签: php cakephp cakephp-3.0 limit

我是CakePHP框架的新手,我在这里提出了一个非常简单的问题:

SELECT * from quiz_questions LIMIT 1,2

如何在CakePHP3中编写上述内容?

我尝试了什么:

$this->QuizQuestions->find()->limit(1,2);

$this->QuizQuestions->find()->limit([1,2]);

2 个答案:

答案 0 :(得分:3)

尝试使用此查询。

$query = $this->QuizQuestions->find()
->limit(50)
->page(2);

答案 1 :(得分:0)

你可以这样试试

 $this->QuizQuestions->find('all', array('limit'=>1, 'offset'=>2));