recherche

Maison  >  Questions et réponses  >  le corps du texte

mongodb如何实现更新一个字段的值为另外一个字段的值?

db.CargoUserProfiles.find().forEach(
 function(item){
   db.CargoUserProfiles.update({"id":item._id},{"$set":{"LastUpdate":item.CreateAt}},false,true)
 }
)

db.CargoUserProfiles.find({}).forEach(function(asset){
               asset.LastUpdate = asset.CreateAt;
         })

尝试了以上两种方式,都没成功,其中CreateAt是有数据的字段,LastUpdate是想新增的字段

ringa_leeringa_lee2762 Il y a quelques jours654

répondre à tous(1)je répondrai

  • PHPz

    PHPz2017-04-24 09:15:39

    db.CargoUserProfiles.find().forEach(
       function(item){                 
           db.CargoUserProfiles.update({"_id":item._id},{"$set":                    {"LastUpdate":item.CreateAt}},false,true) 
        }
    )
    
    mongodb中id字段是“_id”而不是“id”
    

    répondre
    0
  • Annulerrépondre