Neo4j LOAD CSV Error
错误类型 1
Query cannot conclude with LOAD CSV
原因:语句没输入完整,LOAD CSV 应该和 CREATE or MERGE 结合使用
解决方案,例如:
LOAD CSV WITH HEADERS FROM "file:///C:/dir/file.csv" AS row
CREATE (n:Label {attributeName: row.columName});
错误类型 2
在 docker 中的 Neo4j 导入 CSV 文件报错:Co...
heresy.hashnode.dev1 min read