在使用neo4j数据库时,会遇到计算与指定节点产生关联的数量统计需求,例如指定6个节点1,2,3,4,5,6需要找出与这6个节点中4个节点有关联的节点(要求排除这6个节点的数据)
先看实现查询语句:
MATCH (start:person_info)-[r1]-(n)-[r2]-(end:person_info)
WHERE start.persocountId in ['1','2','3','4','5','6']
and end.persocountId in ['1','2','3','4','5','6']
and start.persocountId <> end.persocountId and start.persocountId <> n.persocountId and end.persocountId <> n.persocountId
WITH collect(start.persocountId) + collect(end.persocountId) AS ids, n.persocountId AS idMidle
UNWIND ids AS id
WITH collect(DISTINCT id) AS countId,idMidle where length(countId)>=4
RETURN countId, idMidle
上述语句中
person_info:是实体表
r1:是他们之间的关系
['1','2','3','4','5','6']:指定的6个节点的id号
语句思路:
1、与这6个人都有关系,那么start:person_info和end:person_info 必须是这6个节点中的实体。
2、start,n,end 三个节点不能相等。
3、将start和end节点放入一个集合中collect(start.persocountId) + collect(end.persocountId) AS ids
4、将集合中的重复数据去除掉 UNWIND ids AS id WITH collect(DISTINCT id)
5、集合中节点数量大于等于4的是需要查找的节点
6、返回与6个节点中4个节点有关联的节点的,节点id以及产生关系的节点的id集合
上述红色部分是,将两个集合合并,并且去掉重复数据的关键点。