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