(No version information available, might only be in 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();
?>