求助: 使用neo4j 能否通过union all进行合并之后然后对整体进行分页
发布于 5 年前 作者 chenwh 2878 次浏览 来自 问答

比如 match (n:Teacher) where n.age=18 return n.name as name union all match (s:Student) where s.age=18 return s.name as name; 这样的cypher会返回一个并集, 能不能对这个整体进行分页, 请各位前辈答疑解惑 谢谢各位

2 回复

好像,不能

UNION本身不行。你的排序条件是什么?是否可以不用UNION?

回到顶部