【Mongo】mongo更新欄位為另一欄位的值

小亮520cl發表於2018-08-24

更新欄位為另一欄位的值

db.postMongo.find(過濾條件).forEach(

   function(item){                 

       db.postMongo.update({"_id":item._id},{"$set":{"summary":item.content}},false,true) 

    }

)

db.postMongo.find({'summary':{$exists:false},'content':{$exists:1} }).forEach(
   function(item){                 
       db.postMongo.update({"_id":item._id},{"$set":{"summary":item.content}},false,true) 
    }
)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-2212784/,如需轉載,請註明出處,否則將追究法律責任。

相關文章