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
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
网友评论