Neo4j查询:应用多个WHERE条件无效

z0qdvdin  于 2022-11-05  发布在  其他
关注(0)|答案(2)|浏览(291)

我有一个运行良好的查询。这给了我所有当前fuelPercentLeft超过50%的列车。

  1. MATCH (t:Train)
  2. WITH t.trainId AS trainid, MAX(t.timestamp) AS maxTimeStamp
  3. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  4. WHERE toInteger(m.value) > 50
  5. RETURN count(toInteger(m.value))

我只想用一个查询返回多个结果。例如,对于所有的列车,返回fuelPercentLeft大于50、Engine Temperature小于20、Lubricant Level小于10的所有列车。在上面的查询中,是否可以应用多个WHERE条件?我们是否可以执行以下操作?

  1. MATCH (t:Train)
  2. WITH t.trainId AS trainid, MAX(t.timestamp) AS maxTimeStamp
  3. CALL {
  4. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  5. WHERE toInteger(m.value) > 50
  6. RETURN count(toInteger(m.value)) AS goodFuel
  7. }
  8. CALL {
  9. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  10. WHERE toInteger(m.value) < 50
  11. RETURN count(toInteger(m.value)) AS badFuel
  12. }
  13. CALL {
  14. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'engineTemp'})
  15. WHERE toInteger(m.value) > 20
  16. RETURN count(toInteger(m.value)) AS goodEngine
  17. }
  18. CALL {
  19. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'lubricantLevel'})
  20. WHERE toInteger(m.value) < 10
  21. RETURN count(toInteger(m.value)) AS badLubricant
  22. }
  23. RETURN goodFuel, badFuel, goodEngine, badLubricant

我试过这个,但它不像预期的那样工作。要求是,一个单一的查询应该能够基于多个条件返回多个值。
请帮忙。谢谢!

ztyzrc3y

ztyzrc3y1#

您可以在链中使用可选匹配:

  1. MATCH (t:Train)
  2. WITH t.trainId AS trainid, MAX(t.timestamp) AS maxTimeStamp
  3. OPTIONAL
  4. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  5. WHERE toInteger(m.value) > 50
  6. WITH trainid, maxTimeStamp, count(m) AS goodFuel
  7. OPTIONAL
  8. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  9. WHERE toInteger(m.value) < 50
  10. WITH trainid, maxTimeStamp, goodFuel, count(m) AS badFuel
  11. OPTIONAL
  12. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'engineTemp'})
  13. WHERE toInteger(m.value) > 20
  14. WITH trainid, maxTimeStamp, goodFuel, badFuel, count(m) AS goodEngine
  15. OPTIONAL
  16. MATCH (n:Train{trainId: trainid, timestamp: maxTimeStamp})-[:HAS]->(m:Attributes{name:'lubricantLevel'})
  17. WHERE toInteger(m.value) < 10
  18. WITH trainid, maxTimeStamp, goodFuel, badFuel, goodEngine, count(m) AS badLubricant
  19. RETURN trainid, maxTimeStamp, goodFuel, badFuel, goodEngine, badLubricant
展开查看全部
5sxhfpxr

5sxhfpxr2#

您应用了错误的筛选器,对于trainIdmaxTimeStamp,它们不是必需的,请尝试以下操作:

  1. MATCH (n:Train)-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  2. WHERE toInteger(m.value) > 50
  3. WITH count(n) AS goodFuel
  4. MATCH (n:Train)-[:HAS]->(m:Attributes{name:'fuelPercentLeft'})
  5. WHERE toInteger(m.value) < 50
  6. WITH goodFuel, count(n) AS badFuel
  7. MATCH (n:Train)-[:HAS]->(m:Attributes{name:'engineTemp'})
  8. WHERE toInteger(m.value) > 20
  9. WITH goodFuel, badFuel, count(toInteger(m.value)) AS goodEngine
  10. MATCH (n:Train)-[:HAS]->(m:Attributes{name:'lubricantLevel'})
  11. WHERE toInteger(m.value) < 10
  12. RETURN count(toInteger(m.value)) AS badLubricant, goodFuel, badFuel, goodEngine

相关问题