CollectionFind::having
(No version information available, might only be in Git)
CollectionFind::having — Set condition for aggregate functions
说明
This function can be used after the 'field' operation in order to make a selection on the documents to extract.
参数
sort_expr
-
This must be a valid SQL expression, the use of aggreate functions is allowed
返回值
CollectionFind object that can be used for further processing
示例
示例 #1 mysql_xdevapi\CollectionFind::having() example
<?php
//Assuming $coll is a valid Collection object
//Find all the documents for which the 'age' is greather than 40,
//Only the columns 'name' and 'age' are returned in the Result object
$res = $coll->find()->fields(['name','age'])->having('age > 40')->execute();
?>
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/mysql-xdevapi-collectionfind.having.php