(無版本資訊,可能僅在 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();
?>