Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的数据中,每个节点都具有具有数值的属性“w”。我想找出在整个数据中最常使用“w”的哪个值。我怎样才能做到这一点?我使用密码进行查询。
START n=node(*) RETURN DISTINCT n.w ORDER BY n.w DESC LIMIT 1
此 Cypher 查询返回属性“w”的最大值。如果您想了解更多信息,请查阅密码备忘单。