📅  最后修改于: 2020-11-27 07:04:45             🧑  作者: Mango
与SQL一样,Neo4j CQL提供了一些聚合函数供RETURN子句使用。它类似于SQL中的GROUP BY子句。
我们可以在MATCH命令中使用此RETURN +聚合函数在一组节点上工作并返回一些聚合值。
以下是Neo4j中的聚合功能列表。
Sr.No | Function & Description |
---|---|
1 | COUNT
It returns the number of rows returned by MATCH command. |
2 | MAX
It returns the maximum value from a set of rows returned by MATCH command. |
3 | MIN
It returns the minimum value from a set of rows returned by MATCH command. |
4 | SUM
It returns the summation value of all rows returned by MATCH command. |
5 | AVG
It returns the average value of all rows returned by MATCH command. |