gpt4 book ai didi

neo4j - 在 Neo4j 中 WITH 做什么

转载 作者:行者123 更新时间:2023-12-04 05:47:41 25 4
gpt4 key购买 nike

我无法从 doc 理解这个例子:

START david=node(1)
MATCH david--otherPerson-->()
WITH otherPerson, count(*) as foaf
WHERE foaf > 1
RETURN otherPerson

otherPerson 和 count(*) 在 WITH 行中做什么?

最佳答案

你在这里看到的是两个由 with 连接的查询。
With 充当第一个查询的返回和第二个查询的“开始”。
它设置了传递的上下文的一部分。

normally you would have
START david=node(1)
MATCH david--otherPerson-->()
RETURN otherPerson, count(*) as foaf

然后在调用代码中进行过滤。

with with 你可以直接在cypher中开始下一个查询,它只能看到with部分中声明的内容,
在这种情况下:otherPerson 和 foaf 第一个查询的其他标识符和数据不再可用。

关于neo4j - 在 Neo4j 中 WITH 做什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10466999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com