sql server有下列语句:// 查找名字性别唯一的学生select distinct name,sex from student// 转换成MongoDB的话,我怎么把这种组合列去重,MongoDB好像只支持单个field的去重db.student.distinct("name"); // 只支持一个fielddb.student.distinct("name","sex"); // 错误的,不支持多个field的组合去重有没有大神解决过类似问题,求指导.................
2 回答
大话西游666
TA贡献1817条经验 获得超14个赞
collection = db.tb;
result = collection.aggregate(
[
{"$group": { "_id": { market: "$market", code: "$code" } } }
]
);
printjson(result);
- 2 回答
- 0 关注
- 730 浏览
添加回答
举报
0/150
提交
取消