mongodb 删除重复的数据

2021/6/3 19:22:04

本文主要是介绍mongodb 删除重复的数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

//PlaceName:'$PlaceName',CityCode:'$CityCode' 查询条件

//dups 查询到的重复数据 

 

db.getCollection('HotLocation').aggregate([
{
$group:{_id:{PlaceName:'$PlaceName',CityCode:'$CityCode'},count:{$sum:1},dups:{$addToSet:'$_id'}}
},
{
$match:{count:{$gt:1}}
}

]).forEach(function(it){
//it.dups.shift(); 保留重复的第一条 避免全部删除了
it.dups.shift();
db.getCollection("HotLocation").remove({_id: {$in: it.dups}});

});



这篇关于mongodb 删除重复的数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程