美文网首页
[Neo4J] optional match Cypher查询语

[Neo4J] optional match Cypher查询语

作者: 爱上落入尘世间的你 | 来源:发表于2020-03-22 21:11 被阅读0次

optional match 用于搜索模式中描述的匹配项, 对于找不到的项用null代替

类似于match, 区别在于如果没有匹配到, optional match会用null来作为未匹配到的部分的值

match (n {name: 'aaa'})
optional match (n) --> (b)
return b, b.name

如果b存在就返回b, 否则返回null
对于不存在的b, 尝试返回b的属性返回的也是null

相关文章

网友评论

      本文标题:[Neo4J] optional match Cypher查询语

      本文链接:https://www.haomeiwen.com/subject/elcbyhtx.html