溫馨提示×

mongodb怎么修改字段值

小億
189
2024-05-28 09:56:06
欄目: 云計算

要修改MongoDB中的字段值,您可以使用update()方法或findOneAndUpdate()方法。

  1. 使用update()方法:
db.collection.update(
   { <query> },
   { $set: { <field1>: <value1>, <field2>: <value2>, ... } }
)

示例:

db.collection.update(
   { _id: ObjectId("12345") },
   { $set: { name: "John", age: 30 } }
)
  1. 使用findOneAndUpdate()方法:
db.collection.findOneAndUpdate(
   { <query> },
   { $set: { <field1>: <value1>, <field2>: <value2>, ... } }
)

示例:

db.collection.findOneAndUpdate(
   { _id: ObjectId("12345") },
   { $set: { name: "John", age: 30 } }
)

請注意,update()方法會更新所有符合條件的文檔,而findOneAndUpdate()方法只會更新第一個符合條件的文檔。

0