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


223

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

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

是否有一种简单的方法可以在所有文档中将字段“附加”重命名为“最后”?我在文档中看到了$ rename运算符,但对于如何指定子字段我不太清楚。

Answers:


423

您可以使用:

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/


52
如果您因为没有大量更新而将头撞在墙上,则只需要说一个字:版本false, true中的update方法$rename是:{ upsert:false, multi:true }。您需要multi:true更新所有记录。
RickyA 2013年

1
如果获取,upsert:true它将在不存在字段名称的情况下创建字段名称,默认为false
IGRACH

1
由于某种原因,当我使用"table.field" : "table.field"语法时,这对我不起作用。当我只是使用"field" : "field"语法时,它确实起作用了。

@Steve name.last不是table.field。如果您阅读问题,则可以看到该name字段包含一个对象。
Marc Dingena

这也适用于数组吗?我可以这样做:db.foo.update({}, {$rename:{"name.0.additional":"name.0.last"}}, false, true)
bncc '16


15

如果您需要对Mongoid做同样的事情:

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

更新

语法有所变化monogoid 4.0.0

Model.all.rename(old_field: :new_field)

11
最后一个Monogoid(4.0.0)Model.all.rename(old_field: :new_field)
Calin

我如何使用此选项嵌入文档
Huzaifa Saifuddin

2

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

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

参见FYI


0

这个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!");
}

0

我在用 , Mongo 3.4.0

$ rename运算符将更新字段名称,并具有以下格式:

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

例如

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

新的字段名称必须与现有的字段名称不同。要在嵌入式文档中指定,请使用点号。

此操作将字段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/


嵌入选项不起作用...我收到此错误“无法使用该部分(address.city的地址)遍历该元素”
Huzaifa Saifuddin

0

如果您使用的是MongoMapper,则可以:

Access.collection.update( {}, { '$rename' => { 'location' => 'location_info' } }, :multi => true )
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.