标签: graph neo4j
我的数据库中有很多演员和电影。电影有标题,我想将所有标题作为属性名称的属性转换为“名称”。想通过密码做到这一点。谢谢!
答案 0 :(得分:3)
start n=node(*) where has(n.title) set n.name = n.title delete n.title return count(*);