Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据库中有很多演员和电影。电影有标题,我想将所有以标题作为属性名称的属性转换为“名称”。想通过密码来做到这一点。谢谢!
start n=node(*) where has(n.title) set n.name = n.title delete n.title return count(*);