CrudOperationLimitable::limit

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

CrudOperationLimitable::limitSet result limit

說明

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

Sets the maximum number of records or documents to return.

警告

本函數(shù)還未編寫文檔,僅有參數(shù)列表。

參數(shù)

rows

The maximum number of records or documents.

返回值

A CrudOperationLimitable object.

范例

示例 #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();

?>