MongoDB如何去除组合重复项

sqlserver有下列语句:
//查找名字性别唯一的学生
selectdistinctname,sexfromstudent
//转换成MongoDB的话,我怎么把这种组合列去重,MongoDB好像只支持单个field的去重
db.student.distinct("name");//只支持一个field
db.student.distinct("name","sex");//错误的,不支持多个field的组合去重
有没有大神解决过类似问题,求指导.................
小怪兽爱吃肉
浏览 334回答 2
2回答

翻阅古今

collection=db.tb;result=collection.aggregate([{"$group":{"_id":{market:"$market",code:"$code"}}}]);printjson(result);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript