博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MongoDB 更新文档
阅读量:5931 次
发布时间:2019-06-19

本文共 2966 字,大约阅读时间需要 9 分钟。

update() 方法

update() 方法用于更新已存在的文档。语法格式如下:
db.collection.update(
   <query>,
   <update>,
   {
     upsert: <boolean>,
     multi: <boolean>,
     writeConcern: <document>
   }
)
参数说明:
query : update的查询条件,类似sql update查询内where后面的。
update : update的对象和一些更新的操作符(如$,$inc...)等,也可以理解为sql update查询内set后面的
upsert : 可选,这个参数的意思是,如果不存在update的记录,是否插入objNew,true为插入,默认是false,不插入。
multi : 可选,mongodb 默认是false,只更新找到的第一条记录,如果这个参数为true,就把按条件查出来多条记录全部更新。
writeConcern :可选,抛出异常的级别。

 

db.collection.updateOne() 更新单个文档。

db.collection.updateMany() 更新多个文档。
db.collection.replaceOne() 替换单个文档。
db.collection.update() 多功能更新工具。
db.collection.findOneAndUpdate() 单文档更新的加强版。
db.collection.findOneAndReplace() 单文档替换的加强版。

实例
我们在集合 mycol 中插入如下数据:
db.mycol.insert({ "_id" : 100,"name":"liang", "title" : "MongoDB Overview" })
db.mycol.insert({ "_id" : 101,"name":"guo", "title" : "MongoDB Guide" })
db.mycol.insert({ "_id" : 102,"name":"jun", "title" : "NoSQL Database" })
db.mycol.insert({ "_id" : 104,"name":"liuzhou", "title" : "Python Quick Guide" })
通过 update() 方法来更新标题(title):
db.mycol.update({"name":"liang"},{$set:{"title":"MongoDB Overview2" }})
db.mycol.find();
{ "_id" : 100, "name" : "liang", "title" : "MongoDB Overview2" }
{ "_id" : 101, "name" : "guo", "title" : "MongoDB Guide" }
{ "_id" : 102, "name" : "jun", "title" : "NoSQL Database" }
{ "_id" : 104, "name" : "liuzhou", "title" : "Python Quick Guide" }
以上语句只会修改第一条发现的文档,如果你要修改多条相同的文档,则需要设置 multi 参数为 true。
db.mycol2.insert({ "_id" : 100,"name":"liang", "title" : "MongoDB Overview" })
db.mycol2.insert({ "_id" : 101,"name":"liang", "title" : "MongoDB Guide" })
db.mycol2.insert({ "_id" : 102,"name":"liang", "title" : "NoSQL Database" })
db.mycol2.insert({ "_id" : 104,"name":"liang", "title" : "Python Quick Guide" })
db.mycol2.update({'name':'liang'},{$set:{'title':'MongoDB'}},{multi:true})
 
db.mycol2.find();
{ "_id" : 100, "name" : "liang", "title" : "MongoDB" }
{ "_id" : 101, "name" : "liang", "title" : "MongoDB" }
{ "_id" : 102, "name" : "liang", "title" : "MongoDB" }
{ "_id" : 104, "name" : "liang", "title" : "MongoDB" }
save() 方法
save() 方法通过传入的文档来替换已有文档。语法格式如下:
db.collection.save(
   <document>,
   {
     writeConcern: <document>
   }
)
db.mycol3.insert({ "_id" : 100,"name":"liang", "title" : "MongoDB" })
db.mycol3.save({ "_id" : 100,"name":"liang2", "title" : "MongoDB2" })
db.mycol3.find()
{ "_id" : 100, "name" : "liang2", "title" : "MongoDB2" }
更多实例
只更新第一条记录:
db.col.update( { "count" : { $gt : 1 } } , { $set : { "test2" : "OK"} } );
全部更新:
db.col.update( { "count" : { $gt : 3 } } , { $set : { "test2" : "OK"} },false,true );
只添加第一条:
db.col.update( { "count" : { $gt : 4 } } , { $set : { "test5" : "OK"} },true,false );
全部添加加进去:
db.col.update( { "count" : { $gt : 5 } } , { $set : { "test5" : "OK"} },true,true );
全部更新:
db.col.update( { "count" : { $gt : 15 } } , { $inc : { "count" : 1} },false,true );
只更新第一条记录:
db.col.update( { "count" : { $gt : 10 } } , { $inc : { "count" : 1} },false,false );

转载于:https://www.cnblogs.com/liang545621/p/7373424.html

你可能感兴趣的文章
《随笔记录》20170310
查看>>
网站分析系统
查看>>
一站式解决,Android 拍照 图库的各种问题
查看>>
lsof命令
查看>>
从零开始来看一下Java泛型的设计
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
跨运营商组播传送案例(multicast-proxy-register应用)
查看>>
Good Bye 2013 A
查看>>
Automatic Sql Server Backup Utility Using sqlserveragent
查看>>
Java是如何读取和写入浏览器Cookies的
查看>>
篇一、安装配置Android Studio
查看>>
2014年抢票总结
查看>>
zephir开发的扩展“wudimei框架”之模板词法扫描(三)完成代码切分
查看>>
ML 线性回归Linear Regression
查看>>
oracle如何用sql查看触发器?
查看>>
如何对HashMap按键值排序
查看>>
IIS负载均衡-Application Request Route详解第二篇:创建与配置Server Farm
查看>>