CrudOperationLimitable::limit

(No version information available, might only be in Git)

CrudOperationLimitable::limitSet result limit

说锟斤拷

abstract public mysql_xdevapi\CrudOperationLimitable::limit ( integer $rows ) : mysql_xdevapi\CrudOperationLimitable

Sets the maximum number of records or documents to return.

Warning

锟斤拷锟斤拷锟斤拷锟斤拷未锟斤拷写锟侥碉拷锟斤拷锟斤拷锟叫诧拷锟斤拷锟叫憋拷

锟斤拷锟斤拷

rows

The maximum number of records or documents.

锟斤拷锟斤拷值

A CrudOperationLimitable object.

锟斤拷锟斤拷

Example #1 mysql_xdevapi\CrudOperationLimitable::limit() example

<?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();

?>