我们有“groupby”吗? Neo4j 中的子句?

发布于 2025-01-13 09:28:52 字数 262 浏览 0 评论 0原文

我编写了以下查询来检索 movie 和相应的 rating

match (rvwr:Person)-[r:REVIEWED]->(m:Movie)
where m.released > 2003
return m.title, sum(r.rating)/count(r) as rating

我想确认是否需要使用类似于 groupby 子句 的内容。

I have written the below query to retrieve movie and corresponding rating:

match (rvwr:Person)-[r:REVIEWED]->(m:Movie)
where m.released > 2003
return m.title, sum(r.rating)/count(r) as rating

I want to confirm if there is a need to use anything similar to groupby clause.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末 2025-01-20 09:28:52

neo4j cypher 中没有这样的“group by”子句。 Sum 是聚合函数,而 m.title 不是。因此 cypher 将使用 title 作为 key 分组。以下是有关它的文档。

https://neo4j.com/docs/cypher-manual/当前/功能/聚合/

No such 'group by' clause in neo4j cypher. Sum is an aggregate function and m.title is not. So cypher will use title as a group by key. Below is the documentation about it.

https://neo4j.com/docs/cypher-manual/current/functions/aggregating/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文