我想找出公司中所有用户的数量以及男性和女性的数量。我的查询是:
start n=node:company(name:"comp")
match n<-[:Members_In]-x, n<-[:Members_In]-y
where x.Sex='Male' and y.Sex='Female'
return n.name as companyName, count(distinct x) as NumOfMale,
count(distinct y) as NumOfFemale" );
我的查询是正确的,但我知道我不应该n<-[:Members_In]-y
在 match 子句中使用。
如何获取男性人数、女性人数和总用户数?