mongodb去重的3种方式

Posted 小橙酒馆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb去重的3种方式相关的知识,希望对你有一定的参考价值。

这里补充用mongodb去重的3种方式:

1、db.info_store_dynamic_info.distinct("store_id",{"time_type":2});



2、db.runCommand({"distinct":"info_store_dynamic_info","key":"store_id","time_type":2});



3、

db.getCollection('info_store_daily_info').aggregate([{$group:{'_id':{'store_id':'$store_id','is_push':'$is_push'}}}])




以上是关于mongodb去重的3种方式的主要内容,如果未能解决你的问题,请参考以下文章

数组去重的几种方式

js实现数组去重的方式(7种)

list去重的四种方式

数组去重的五种方法

数组去重的4种方式

Java List去重的几种方式