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

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

是否有一个简单的方法来重命名字段“附加”为“最后”在所有的文档?我在文档中看到了$rename操作符,但我不清楚如何指定子字段。


当前回答

如果你正在使用MongoMapper,这是有效的:

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

其他回答

这个nodejs代码只是这样做的,正如@Felix Yan提到的前一种方式似乎工作得很好,我在其他片段上有一些问题,希望这有帮助。

这将重命名列“oldColumnName”为表“documents”的“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!");
}

任何人都可以使用这个命令重命名集合中的字段(不使用任何_id):

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

看到通知你

如果你正在使用MongoMapper,这是有效的:

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

如果你需要用mongoid做同样的事情:

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

更新

monogoid 4.0.0的语法有变化:

Model.all.rename(old_field: :new_field)

我正在使用Mongo 3.4.0

$rename操作符更新字段的名称,格式如下:

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

对如

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

新字段名不能与已有字段名相同。要在嵌入式文档中指定a,请使用点表示法。

该操作将字段nmae重命名为集合中所有文档的名称:

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/