CrudOperationLimitable::limit
(No version information available, might only be in Git)
CrudOperationLimitable::limit — Set result limit
Beschreibung
$rows
): mysql_xdevapi\CrudOperationLimitableSets the maximum number of records or documents to return.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Parameter-Liste
-
rows
-
The maximum number of records or documents.
Rückgabewerte
A CrudOperationLimitable object.
Beispiele
Beispiel #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();
?>