回答:
既存のコレクションフィールドの更新と同じで$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を追加する場合は、空のセレクターを使用し、マルチフラグをtrue(最後のパラメーター)に設定してすべてのドキュメントを更新する必要があります
db.your_collection.update(
{},
{ $set: {"new_field": 1} },
false,
true
)
編集:
上記の例では、最後の2つのフィールドfalse, true
でupsert
およびmulti
フラグを指定しています。
アップサート: trueに設定すると、クエリ条件に一致するドキュメントがない場合に新しいドキュメントを作成します。
Multi: trueに設定すると、クエリ条件を満たす複数のドキュメントが更新されます。falseに設定すると、1つのドキュメントが更新されます。
これは、versions
以前のモンゴ向け2.2
です。最新バージョンでは、クエリが少し変更されています
db.your_collection.update({},
{$set : {"new_field":1}},
{upsert:false,
multi:true})
new_field
、test
フィールドの文字列の長さに等しいintである必要があります。
Pymongo 3.9以降
update()
廃止され、あなたが使用する必要があります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.