我如何为MongoDB中的所有文档重命名一个字段?

kxxlusnw  于 2023-03-01  发布在  Go
关注(0)|答案(7)|浏览(131)

假设我在MongoDB中有一个包含5000条记录的集合,每条记录包含类似于以下内容的内容:

{
"occupation":"Doctor",
"name": {
   "first":"Jimmy",
   "additional":"Smith"
}

是否有一种简单的方法可以将所有文档中的字段“additional”重命名为“last”?我在文档中看到了$rename操作符,但我不太清楚如何指定子字段。

sxissh06

sxissh061#

您可以使用:

db.foo.update({}, {
    $rename: {
        "name.additional": "name.last"
    }
}, false, true);

或者只更新包含属性的文档:

db.foo.update({
    "name.additional": {
        $exists: true
    }
}, {
    $rename: {
        "name.additional": "name.last"
    }
}, false, true);

上述方法中的false, true为:{ upsert:false, multi:true }。您需要multi:true来更新所有记录。
或者可以用前一种方式:

remap = function (x) {
    if (x.additional) {
        db.foo.update({
            _id: x._id
        }, {
            $set: {
                "name.last": x.name.additional
            }, $unset: {
                "name.additional": 1
            }
        });
    }
}
    
db.foo.find().forEach(remap);
    • 在MongoDB 3.2中,您还可以使用**
db.students.updateMany({}, { 
    $rename: { 
        "oldname": "newname" 
    } 
})

其一般语法为

db.collection.updateMany(filter, update, options)

https://docs.mongodb.com/manual/reference/method/db.collection.updateMany/

lymgl2op

lymgl2op2#

您可以使用$rename字段更新运算符:

db.collection.update(
  {},
  { $rename: { 'name.additional': 'name.last' } },
  { multi: true }
)
k10s72fa

k10s72fa3#

如果你需要对蒙哥做同样的事情:

Model.all.rename(:old_field, :new_field)
    • 更新**

monogoid 4.0.0中的语法有变化:

Model.all.rename(old_field: :new_field)
qncylg1j

qncylg1j4#

任何人都可能使用此命令重命名集合中的字段(不使用any_id):

dbName.collectionName.update({}, {$rename:{"oldFieldName":"newFieldName"}}, false, true);

参见FYI

5vf7fwbs

5vf7fwbs5#

我正在使用Mongo 3.4.0
$rename运算符用于更新字段的名称,格式如下:

{$rename: { <field1>: <newName1>, <field2>: <newName2>, ... } }

例如

db.getCollection('user').update( { _id: 1 }, { $rename: { 'fname': 'FirstName', 'lname': 'LastName' } } )

新字段名称必须与现有字段名称不同。若要在嵌入文档中指定,请使用点标记法。
此操作将集合中所有文档的字段nmae重命名为name:

db.getCollection('user').updateMany( {}, { $rename: { "add": "Address" } } )

db.getCollection('user').update({}, {$rename:{"name.first":"name.FirstName"}}, false, true);

在上述方法中,false、true分别为:{ upsert:false,multi:true }。要更新所有记录,您需要multi:true。

重命名嵌入文档中的域

db.getCollection('user').update( { _id: 1 }, { $rename: { "name.first": "name.fname" } } )

使用链接:https://docs.mongodb.com/manual/reference/operator/update/rename/

h43kikqp

h43kikqp6#

这个nodejs代码就是这样做的,正如@Felix Yan提到的,以前的方式似乎工作得很好,我对其他代码片段有一些问题,希望这能有所帮助。
这将把表“documents”的列“oldColumnName”重命名为“newColumnName”

var MongoClient = require('mongodb').MongoClient
  , assert = require('assert');

// Connection URL
//var url = 'mongodb://localhost:27017/myproject';
var url = 'mongodb://myuser:mypwd@myserver.cloud.com:portNumber/databasename';

// Use connect method to connect to the server
MongoClient.connect(url, function(err, db) {
  assert.equal(null, err);
  console.log("Connected successfully to server");

  renameDBColumn(db, function() {
    db.close();
  });

});

//
// This function should be used for renaming a field for all documents
//
var renameDBColumn = function(db, callback) {
  // Get the documents collection
  console.log("renaming database column of table documents");
  //use the former way:
  remap = function (x) {
    if (x.oldColumnName){
      db.collection('documents').update({_id:x._id}, {$set:{"newColumnName":x.oldColumnName}, $unset:{"oldColumnName":1}});
    }
  }

  db.collection('documents').find().forEach(remap);
  console.log("db table documents remap successfully!");
}
c8ib6hqw

c8ib6hqw7#

如果您正在使用MongoMapper,这将起作用:

Access.collection.update( {}, { '$rename' => { 'location' => 'location_info' } }, :multi => true )

相关问题