如何为现有集合中的每个文档添加新字段?
我知道如何更新现有文档的字段,但不知道如何为集合中的每个文档添加新字段。我怎样才能在mongo
shell中执行此操作?
答案 0 :(得分:494)
与更新现有收集字段相同,如果指定字段不存在,$set
将添加新字段。
看看这个例子:
> db.foo.find()
> db.foo.insert({"test":"a"})
> db.foo.find()
{ "_id" : ObjectId("4e93037bbf6f1dd3a0a9541a"), "test" : "a" }
> item = db.foo.findOne()
{ "_id" : ObjectId("4e93037bbf6f1dd3a0a9541a"), "test" : "a" }
> db.foo.update({"_id" :ObjectId("4e93037bbf6f1dd3a0a9541a") },{$set : {"new_field":1}})
> db.foo.find()
{ "_id" : ObjectId("4e93037bbf6f1dd3a0a9541a"), "new_field" : 1, "test" : "a" }
修改强>
如果你想为你的所有集合添加一个new_field,你必须使用空选择器,并将multi flag设置为true(最后一个参数)以更新所有文档
db.your_collection.update(
{},
{ $set: {"new_field": 1} },
false,
true
)
修改强>
在上面的示例中,最后两个字段false, true
指定了upsert
和multi
标记。
Upsert:如果设置为true,则在没有文档与查询条件匹配时创建新文档。
Multi:如果设置为true,则更新符合查询条件的多个文档。如果设置为false,则更新一个文档。
这适用于versions
之前的Mongo 2.2
。对于最新版本,查询会稍微更改
db.your_collection.update({},
{$set : {"new_field":1}},
{upsert:false,
multi:true})
答案 1 :(得分:10)
为澄清起见,MongoDB 4.0.x版的语法如下:
db.collection.update({},{$set: {"new_field*":1}},false,true)
这是一个工作示例,向 articles 集合中添加了一个 published 字段,并将该字段的值设置为 true :
db.articles.update({},{$set: {"published":true}},false,true)
答案 2 :(得分:1)
从MongoDB 3.2版开始,您可以使用updateMany():
> db.yourCollection.updateMany({}, {$set:{"someField": "someValue"}})
答案 3 :(得分:0)
Pymongo 3.9 +
update()
is now deprecated,您应该改用replace_one()
,update_one()
或update_many()
。
在我的情况下,我使用了update_many()
,它解决了我的问题:
db.your_collection.update_many({}, {"$set": {"new_field": "value"}}, upsert=False, array_filters=None)
来自文档
update_many(filter, update, upsert=False, array_filters=None, bypass_document_validation=False, collation=None, session=None) filter: A query that matches the documents to update. update: The modifications to apply. upsert (optional): If True, perform an insert if no documents match the filter. bypass_document_validation (optional): If True, allows the write to opt-out of document level validation. Default is False. collation (optional): An instance of Collation. This option is only supported on MongoDB 3.4 and above. array_filters (optional): A list of filters specifying which array elements an update should apply. Requires MongoDB 3.6+. session (optional): a ClientSession.
答案 4 :(得分:0)
如果您正在使用猫鼬,请在连接猫鼬后尝试一下
async ()=> await Mongoose.model("collectionName").updateMany({}, {$set: {newField: value}})
答案 5 :(得分:0)
以上答案并未涵盖这种情况。我正在寻找类似的查询,但想根据条件将 Public Sub keepExcelInstance()
Dim xlApp as Excel.Application
Dim xlApp2 as Excel.Application
Set xlApp = GetObject(, "Excel.Application") 'Get the current instance of Excel.
Set xlApp2 = New Excel.Application 'Create a separate instance of Excel.
End Sub
添加到几个文档中。
因此,我们可以使用 fields
的第一个变量来更新少数文档中的字段。
示例:我想向 userType 为 Employer 且国家/地区为“AAA”的所有用户添加一个可为空字段 updateMany
。
isDeprecated?
这个答案在那些我们必须找到集合然后更新的场景中也很有帮助。这可以在前面提到的单个查询中完成。