要查询一个collection中deptId不重复的记录数?mongodb命令行中的指令db.model.distinct("deptId").length可以实现,但是在node中无法使用,大家在node中是怎么使用的那?
1 回答
胡子哥哥
TA贡献1825条经验 获得超6个赞
db.collection("model").aggregate([ {'$group': {_id: "$deptId"}} ]).then((err, c) => { ... });
shell下面的distinct
方法已经过时不建议使用,相信后面的版本会移除此方法。不过distinct
本质上就是group
,这在SQL中也是一样,所以换成group
就好了。
- 1 回答
- 0 关注
- 531 浏览
添加回答
举报
0/150
提交
取消