用于更新所有匹配特定 ID 的文档的 MongoDB 查询
使用 updateMany() 函数更新所有匹配过滤器条件的文档。让我们创建一个包含文档的集合 -
> db.demo476.insertOne({_id:1,"Name":"Chris"}); { "acknowledged" : true, "insertedId" : 1 } > db.demo476.insertOne({_id:2,"Name":"David"}); { "acknowledged" : true, "insertedId" : 2 } > db.demo476.insertOne({_id:3,"Name":"Bob"}); { "acknowledged" : true, "insertedId" : 3 } > db.demo476.insertOne({_id:4,"Name":"Carol"}); { "acknowledged" : true, "insertedId" : 4 }
使用 find() 方法显示集合中的所有文档 -
> db.demo476.find();
这将产生以下输出 -
{ "_id" : 1, "Name" : "Chris" } { "_id" : 2, "Name" : "David" } { "_id" : 3, "Name" : "Bob" } { "_id" : 4, "Name" : "Carol" }
以下是更新所有匹配特定 ID 的文档的查询 -
> db.demo476.updateMany({_id:{$in:[1,3]}},{$set:{Name:"Robert"}}); { "acknowledged" : true, "matchedCount" : 2, "modifiedCount" : 2 }
使用 find() 方法显示集合中的所有文档 -
> db.demo476.find();
这将产生以下输出 -
{ "_id" : 1, "Name" : "Robert" } { "_id" : 2, "Name" : "David" } { "_id" : 3, "Name" : "Robert" } { "_id" : 4, "Name" : "Carol" }
广告