如何用 csv 文件替换 Neo4j 中某个属性的值
How to replace values for a certain attribute in Neo4j with a csv file
您好,现在我在 Neo4j DB 中有一个这样的模型:
人员{ID、姓名、年龄、专业、部门}
现在我想用 csv 文件中的 Marjor_Text 列替换 Major。
可以用Kettle或者Neo4j实现吗?
如果我使用 Neo4j,我有这个脚本:
使用 HEADERS 从“file:///file.csv”加载 CSV 作为测试
SET Person.Marjor = test.Marjor_text
你首先必须匹配人物
LOAD CSV WITH HEADERS FROM "file:///file.csv" AS test
MATCH (Person:Person{id:test.ID})
SET Person.Marjor = test.Marjor_text
您好,现在我在 Neo4j DB 中有一个这样的模型: 人员{ID、姓名、年龄、专业、部门}
现在我想用 csv 文件中的 Marjor_Text 列替换 Major。
可以用Kettle或者Neo4j实现吗? 如果我使用 Neo4j,我有这个脚本: 使用 HEADERS 从“file:///file.csv”加载 CSV 作为测试 SET Person.Marjor = test.Marjor_text
你首先必须匹配人物
LOAD CSV WITH HEADERS FROM "file:///file.csv" AS test
MATCH (Person:Person{id:test.ID})
SET Person.Marjor = test.Marjor_text