mongodb三种去重方式
Posted 小橙测试驿馆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb三种去重方式相关的知识,希望对你有一定的参考价值。
这里补充用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三种去重方式的主要内容,如果未能解决你的问题,请参考以下文章