mongodb更新操作

db.getCollections('students').update({},{$set:{}},{upsert:false,multi:false})  更新单行,upsert为true时,更新不存在的数据,即为添加数据

db.getCollections('students').update({},{$set:{}},{false,true})  //更新多行

posted @ 2018-05-15 23:36  江山一族  阅读(149)  评论(0编辑  收藏  举报