作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究一个包含两个彼此相关的不同部分的问题。我想将两者结合起来。
1:第一部分
MATCH (r:Route)-[source_Airport_ID]->(a:Airport)
with count(r.SourceAirportID) as cnt, a.AirportID as
NumberofAirports_Having_source_flightGreater300
where cnt>300
Return Count(NumberofAirports_Having_source_flightGreater300)
MATCH (r:Route)-[destination_Airport_ID]->(a:Airport)
with count(r.SourceAirportID) as cnt, a.AirportID as
NmberofAirports_Having_destination_flightGreater300
where cnt>300
Return Count(NumberofAirports_Having_destination_flightGreater300)
MATCH (r:Route)-[source_Airport_ID]->(a:Airport)
with count(r.SourceAirportID) as cnt, a.AirportID as
NumberofAirports_Having_source_flightGreater300
where cnt>300
MATCH (r:Route)-[destination_Airport_ID]->(a:Airport)
with count(r.SourceAirportID) as cnt, a.AirportID as
NumberofAirports_Having_destination_flightGreater300,
NumberofAirports_Having_source_flightGreater300
where cnt>300
Return
Count(NumberofAirports_Having_source_flightGreater300),
Count(NumberofAirports_Having_destination_flightGreater300)
最佳答案
这应该工作:
MATCH (r:Route)-[source_Airport_ID]->(a:Airport)
with count(r.SourceAirportID) as cnt, a.AirportID as
NumberofAirports_Having_source_flightGreater300
where cnt>300
WITH COUNT(NumberofAirports_Having_source_flightGreater300) AS cnt1
MATCH (r:Route)-[destination_Airport_ID]->(a:Airport)
WITH cnt1, count(r.SourceAirportID) as cnt, a.AirportID as
NmberofAirports_Having_destination_flightGreater300
where cnt>300
Return cnt1, Count(NumberofAirports_Having_destination_flightGreater300) AS cnt2
关于docker - 如何在Cypher Neo4j中合并多个WITH和MATCH子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56603864/
我是一名优秀的程序员,十分优秀!