CollectionFind::having
(No version information available, might only be in Git)
CollectionFind::having — 集約関数の条件を設定する
説明
この関数は、展開するドキュメントを選択するために、 'field' 操作の後で使えます。
パラメータ
sort_expr
-
有効な SQL の式でなければなりません。 集約関数を使うこともできます。
戻り値
後の操作で使える CollectionFind オブジェクトを返します。
例
例1 mysql_xdevapi\CollectionFind::having() の例
<?php
// $coll は、有効な Collection オブジェクトとします
// 'age' が40以上の全てのドキュメントを検索し、
// カラム 'name' と 'age' のみを Result オブジェクトとして返します。
$res = $coll->find()->fields(['name','age'])->having('age > 40')->execute();
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google