(没有版本信息可用,可能只在 Git 中)
CrudOperationLimitable::limit — 设置结果限制
$rows
): mysql_xdevapi\CrudOperationLimitable设置要返回的记录或文档的最大数量。
此函数目前没有文档;只有其参数列表可用。
rows
记录或文档的最大数量。
一个 CrudOperationLimitable 对象。
示例 #1 mysql_xdevapi\CrudOperationLimitable::limit() 示例
<?php
$res = $coll->find()->fields(['name as n','age as a','job as j'])->groupBy('j')->limit(11)->execute();
$res = $table->update()->set('age',69)->where('age > 15 and age < 22')->limit(4)->orderby(['age asc','name desc'])->execute();
?>