如何在不覆盖现有文档的情况下更新 MongoDB 文档?
如需仅更新字段值,请将 update() 与 $set 结合使用。这样不会覆盖现有的值。我们先用文档创建一个集合,即−
> db.demo401.insertOne( ... { ... "_id" : 1001, ... "Name" : "Chris", ... "SubjectName" : "MongoDB", ... "Score" : 45 ... } ... ); { "acknowledged" : true, "insertedId" : 1001 }
使用 find() 方法显示集合中的所有文档,即−
> db.demo401.find();
这会产生以下输出,即−
{ "_id" : 1001, "Name" : "Chris", "SubjectName" : "MongoDB", "Score" : 45 }
以下查询用于在不覆盖现有值的情况下更新文档,即−
> db.demo401.update({_id: 1001}, {$set: {Score:89}}) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
使用 find() 方法显示集合中的所有文档,即−
> db.demo401.find();
这会产生以下输出,即−
{ "_id" : 1001, "Name" : "Chris", "SubjectName" : "MongoDB", "Score" : 89 }
广告