Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 660 Bytes

Chapter03.md

File metadata and controls

17 lines (14 loc) · 660 Bytes

第三章 Neo4j之 Cypher

3.3.8.5 用MERGE的唯一性约束P136

原文
ERGE (laurence:Person) {name: 'Laurence Fishburne'}
更正:MERGE (laurence:Person) {name: 'Laurence Fishburne'}
说明:"ERGE"前面缺失字母"M"

3.4.2.13 properties()P176

原文:C CREATE (p:Person {name: 'Stefan', city: 'Berlin'})
更正:CREATE (p:Person {name: 'Stefan', city: 'Berlin'})
说明:去掉了CREATE 之前多余的'C'字符

3.4.2.14 properties()P177

原文:R RETURN toInt('42'), toInt('not a number')
更正:RETURN toInt('42'), toInt('not a number')
说明:去掉了RETURN之前多余的'R'字符