mongodb的基本操作之更新不存在的数据

时间:2022-12-31 07:40:02
查找y为100的数据
db.test_collection.find({y:100})
发现没有,这时候将y为100的数据更新为y为999的数据
db.test_collection.update({y:100},{y:999})
我们再查找y为999的数据
db.test_collection.find({y:999})
发现不存在



我们有时候有这样的需求,在更新一条不存在的数据时,自动创建,这就是update第三个参数,如果为true,表示如果查找的数据不存在,就自动创建一条
db.test_collection.update({y:100},{y:999},true)
这时候再查找y为999的数据,就有了
db.test_collection.find({y:999})