代码之家  ›  专栏  ›  技术社区  ›  Chris Fulstow

使用另一个字段的值更新MongoDB字段

  •  294
  • Chris Fulstow  · 技术社区  · 14 年前

    在MongoDB中,是否可以使用另一个字段的值更新字段的值?等效的SQL如下:

    UPDATE Person SET Name = FirstName + ' ' + LastName
    

    db.person.update( {}, { $set : { name : firstName + ' ' + lastName } );
    
    7 回复  |  直到 8 年前
        1
  •  225
  •   Sede    4 年前

    最好的方法是在4.2+版本中,它允许在更新文档和 updateOne , updateMany update

    MongoDB 4.2版+

    版本4.2还引入了 $set 管道阶段运算符,它是 $addFields . 我会用 $集 就在这里 地图 我们正在努力实现的目标。

    db.collection.<update method>(
        {},
        [
            {"$set": {"name": { "$concat": ["$firstName", " ", "$lastName"]}}}
        ]
    )
    

    MongoDB 3.4版+

    在3.4+中,您可以使用 $添加字段 $out 聚合管道运算符。

    db.collection.aggregate(
        [
            { "$addFields": { 
                "name": { "$concat": [ "$firstName", " ", "$lastName" ] } 
            }},
            { "$out": "collection" }
        ]
    )
    

    注意这个 不更新集合,而是替换现有集合或创建新集合。 也适用于需要 “类型转换”你需要客户端处理, find() 方法而不是 .aggreate()

    MongoDB 3.2和3.0

    我们这样做的方式是 $project 使用我们的文档 $concat 字符串聚合运算符返回连接的字符串。 我们从那里开始,然后迭代 光标 使用 $set 批量操作

    聚合查询:

    var cursor = db.collection.aggregate([ 
        { "$project":  { 
            "name": { "$concat": [ "$firstName", " ", "$lastName" ] } 
        }}
    ])
    

    MongoDB 3.2或更新版本

    因此,您需要使用 bulkWrite 方法。

    var requests = [];
    cursor.forEach(document => { 
        requests.push( { 
            'updateOne': {
                'filter': { '_id': document._id },
                'update': { '$set': { 'name': document.name } }
            }
        });
        if (requests.length === 500) {
            //Execute per 500 operations and re-init
            db.collection.bulkWrite(requests);
            requests = [];
        }
    });
    
    if(requests.length > 0) {
         db.collection.bulkWrite(requests);
    }
    

    MongoDB 2.6和3.0

    在此版本中,您需要使用现在已弃用的 Bulk API及其 associated methods

    var bulk = db.collection.initializeUnorderedBulkOp();
    var count = 0;
    
    cursor.snapshot().forEach(function(document) { 
        bulk.find({ '_id': document._id }).updateOne( {
            '$set': { 'name': document.name }
        });
        count++;
        if(count%500 === 0) {
            // Excecute per 500 operations and re-init
            bulk.execute();
            bulk = db.collection.initializeUnorderedBulkOp();
        }
    })
    
    // clean up queues
    if(count > 0) {
        bulk.execute();
    }
    

    MongoDB 2.4版

    cursor["result"].forEach(function(document) {
        db.collection.update(
            { "_id": document._id }, 
            { "$set": { "name": document.name } }
        );
    })
    
        2
  •  238
  •   evandrix    9 年前

    你应该反复检查。对于您的具体情况:

    db.person.find().snapshot().forEach(
        function (elem) {
            db.person.update(
                {
                    _id: elem._id
                },
                {
                    $set: {
                        name: elem.firstname + ' ' + elem.lastname
                    }
                }
            );
        }
    );
    
        3
  •  103
  •   Niels van der Rest    6 年前

    styvane's answer .


    下面是过时的答案

    this answer 例如,或 this one 对于服务器端 eval() .

        4
  •  44
  •   Eric Kigathi    9 年前

    对于具有高活动性的数据库,您可能会遇到更新影响活动更改记录的问题,因此我建议使用

    db.person.find().snapshot().forEach( function (hombre) {
        hombre.name = hombre.firstName + ' ' + hombre.lastName; 
        db.person.save(hombre); 
    });
    

    http://docs.mongodb.org/manual/reference/method/cursor.snapshot/

        5
  •  9
  •   Chris Gibb    9 年前

    我尝试了上面的解决方案,但发现它不适合于大量数据。然后我发现了流特征:

    MongoClient.connect("...", function(err, db){
        var c = db.collection('yourCollection');
        var s = c.find({/* your query */}).stream();
        s.on('data', function(doc){
            c.update({_id: doc._id}, {$set: {name : doc.firstName + ' ' + doc.lastName}}, function(err, result) { /* result == true? */} }
        });
        s.on('end', function(){
            // stream can end before all your updates do if you have a lot
        })
    })
    
        6
  •  9
  •   Aldo    5 年前

    关于这个 answer ,在版本3.6中不推荐使用快照函数,根据此 update . 因此,在3.6及更高版本上,可以这样执行操作:

    db.person.find().forEach(
        function (elem) {
            db.person.update(
                {
                    _id: elem._id
                },
                {
                    $set: {
                        name: elem.firstname + ' ' + elem.lastname
                    }
                }
            );
        }
    );
    
        7
  •  3
  •   Xavier Guihot    5 年前

    启动 Mongo 4.2 db.collection.update() 可以接受聚合管道,最后允许基于另一个字段更新/创建字段:

    // { firstName: "Hello", lastName: "World" }
    db.collection.update(
      {},
      [{ $set: { name: { $concat: [ "$firstName", " ", "$lastName" ] } } }],
      { multi: true }
    )
    // { "firstName" : "Hello", "lastName" : "World", "name" : "Hello World" }
    
    • {} 是匹配查询,过滤要更新的文档(在本例中是所有文档)。

    • 第二部分 [{ $set: { name: { ... } }] 是更新聚合管道(注意方括号表示使用聚合管道)。 $set 是一个新的聚合运算符和 $addFields .

    • 别忘了 { multi: true } ,否则将只更新第一个匹配的文档。

        8
  •  2
  •   Chris Bloom    8 年前

    js_query = %({
      $or : [
        {
          'settings.mobile_notifications' : { $exists : false },
          'settings.mobile_admin_notifications' : { $exists : false }
        }
      ]
    })
    
    js_for_each = %(function(user) {
      if (!user.settings.hasOwnProperty('mobile_notifications')) {
        user.settings.mobile_notifications = user.settings.email_notifications;
      }
      if (!user.settings.hasOwnProperty('mobile_admin_notifications')) {
        user.settings.mobile_admin_notifications = user.settings.email_admin_notifications;
      }
      db.users.save(user);
    })
    
    js = "db.users.find(#{js_query}).forEach(#{js_for_each});"
    Mongoid::Sessions.default.command('$eval' => js)