您可以使用:
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/
您可以使用 $rename 字段更新运算符:
db.collection.update(
{},
{ $rename: { 'name.additional': 'name.last' } },
{ multi: true }
)
updateMany
是 Mongoose 命令,而不是 MongoDB 命令。该命令不起作用。
如果您需要对 mongoid 做同样的事情:
Model.all.rename(:old_field, :new_field)
更新
monogoid 4.0.0
中的语法发生了变化:
Model.all.rename(old_field: :new_field)
Model.all.rename(old_field: :new_field)
中的语法发生了变化
任何人都可能使用此命令重命名集合中的字段(不使用任何 _id):
dbName.collectionName.update({}, {$rename:{"oldFieldName":"newFieldName"}}, false, true);
见FYI
这个nodejs代码就是这样做的,正如@Felix Yan提到的前一种方式似乎工作得很好,我对其他snipets有一些问题希望这会有所帮助。
这会将列“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!");
}
我正在使用,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/
如果您使用的是 MongoMapper,则此方法有效:
Access.collection.update( {}, { '$rename' => { 'location' => 'location_info' } }, :multi => true )
$rename
版本的update
方法中的false, true
是:{ upsert:false, multi:true }
。您需要multi:true
来更新您的所有记录。upsert:true
将创建字段名称,如果字段名称不存在,默认为false
。"table.field" : "table.field"
语法时,这对我不起作用。当我只使用"field" : "field"
语法时,它确实有效。name.last
不是table.field
。如果您阅读该问题,您会看到name
字段包含一个对象。db.foo.update({}, {$rename:{"name.0.additional":"name.0.last"}}, false, true)
?