如何使用更新命令更新 mongodb 中的文档密钥?

How to update document key in mongodb using update command?

我尝试将数据插入到 mongodb.its 中,但已成功插入,但我遇到了错误的文档插入到 mongodb.how 中的问题,无法使用 mongodb 中的更新查询更新文档中的键和值。

Json数据格式

{
             "brand": "LG",
             "colour": "Black",
             "item height": "14 Millimeters",
             "item width": "14.1 Centimeters",
             "item weight": "200 g",
             "product dimensions": "13.5 x 14.1 x 1.4 cm",
             "item model number": "GP65NB60",
             "included components": "Power2Go, PowerBackup, YouCam, LabelPrint and Norton internet security (60 days trial)"
}

如何使用 mongodb 中的更新查询将关键前品牌更新为品牌。

您可以使用 $rename 运算符将密钥更新为

db.collectionName.update( { _id: 1 }, { $rename: { 'brand': 'brands'} } )

要更新值,请使用 $set 运算符,

db.collectionName.update(
   { _id: 100 },
   { $set:
      {
        key1: value1,
        key2: value2,
        .....
      }
   }
)