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

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

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

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

134320 次浏览

你可以使用:

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为:你需要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/

你可以使用美元重命名字段更新操作符:

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

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

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

更新

monogoid 4.0.0中的语法有变化:

Model.all.rename(old_field: :new_field)

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

dbName.collectionName.update({}, {$rename:{"oldFieldName":"newFieldName"}}, false, 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!");
}

我正在使用,蒙戈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/

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

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