这是我试图在Neo4j 3.1.1版中运行的查询 这个查询出了什么问题?
CREATE (ee:officers { name: KIM SOO IN, icij_id: E72326DEA50F1A9C2876E112AAEB42BC,
valid_until: The Panama Papers data is current through 2015,
country_codes: KOR, countries: South Korea, sourceID: Panama Papers,
note: , node_id: 12000001 })
请帮我纠正查询。
答案 0 :(得分:1)
你缺少引号
CREATE (ee:officers { name: "KIM SOO IN", icij_id: "E72326DEA50F1A9C2876E112AAEB42BC",
valid_until: "The Panama Papers data is current through 2015",
country_codes: "KOR", countries: "South Korea", sourceID: "Panama Papers",
note:"" , node_id: 12000001 })