任何人都可以帮我处理MongoDB中的以下案例:
聚合不支持合并到同一个集合中,我通过简单的javascript获得它,但我们需要MapReduce。
以下是我的简单脚本:
db.col1.find({
"field1": "value"
}).forEach(function(d1) {
d1.f2 = NumberInt(d1.f2 / 10);
db.col1.save(d1)
})
答案 0 :(得分:0)
在保存修改后的文档d1之前,使用新的ObjectId()更改其_id,这将插入新的d1而不是更新现有的d1:
db.col1.find({"field1" : "value"}).forEach(function(d1)
{
d1.f2 = NumberInt(d1.f2/10);
d1._id = ObjectId();
db.col1.save(d1);
})