给表添加数据:db.imooc_collection.insert({x:100,y:100,z:100})部分数据进行更新db.imooc_collection.update({z:100},{$set:{y:99}})查询后:db.imooc_collection.find({x:100})结果: "x" : 100, "y" : 99, "z" : 100不懂的地方是 在进行部分更新时,{z:100}存在的意义是什么?为什么我去掉这个,直接$set就会报错db.imooc_collection.update({$set:{y:99})
- 2 回答
- 0 关注
- 1720 浏览
添加回答
举报
0/150
提交
取消