方法distinct()对数据进行去重
语法:
db.集合名称.distinct('去重字段',{条件})
例1:查找年龄大于18的性别(去重)
db.stu.distinct('gender',{age:{$gt:18}})
标签:重复,MongoDB,db,查询,distinct,18,数据 From: https://www.cnblogs.com/chenwandong/p/16835014.html
语法:
db.集合名称.distinct('去重字段',{条件})
例1:查找年龄大于18的性别(去重)
db.stu.distinct('gender',{age:{$gt:18}})
标签:重复,MongoDB,db,查询,distinct,18,数据 From: https://www.cnblogs.com/chenwandong/p/16835014.html