0
我有複雜的查詢問題; 這裏是我的暗號查詢:neo4j中如何在密碼查詢中有兩個聚合?
params.put("query", "name:*");
ExecutionResult result = engine.execute("start n=node:groups({query})
match n<-[:Members_In]-x
with n,count(distinct x) as numberOfUsers
where numOfUsers>avg(numOfUsers)
return n.name,numOfUsers ", params);
n
是組名,x是各組的用戶。 我如何讓平均用戶數量與平均用戶數量進行比較? 我可以獲得羣組用戶的平均數量,然後返回比平均用戶數量多的羣組嗎? 謝謝。
謝謝,它很有用。 – user1878364