使用db.表名.update() 進行更新數據 指定的表必須是存在的
語法以下:
db.collection.update( criteria, objNew, upsert, multi )
criteria : update的查詢條件,相似sql update查詢內where後面的
objNew : update的對象和一些更新的操做符(如$,$inc...)等,也能夠理解爲sql update查詢內set後面的
upsert : 這個參數的意思是,若是不存在update的記錄,是否插入objNew,true爲插入,默認是false,不插入。
multi : mongodb默認是false,只更新找到的第一條記錄,若是這個參數爲true,就把按條件查出來多條記錄所有更新。
例如咱們有一張表是 noPK
> db.noPK.find()
{ "_id" : ObjectId("5a50642b908e6b07a84472a2"), "name" : "javascript", "value" : "vue.js" }
{ "_id" : ObjectId("5a50655b908e6b07a84472a3"), "name" : "python", "type" : "script" }
咱們須要將name的值是python的更新爲shell
須要注意是mongo是區分大小寫的當你把python 寫錯成Python 是沒法更新數據的
> db.noPK.update({"name":"Python"}, {$set:{"name":"shell"}})
WriteResult({ "nMatched" : 0, "nUpserted" : 0, "nModified" : 0 })
>
返回的結果顯示更新條目是0 是由於寫錯成Python
> db.noPK.update({"name":"python"}, {$set:{"name":"shell"}})
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
> db.noPK.find()
{ "_id" : ObjectId("5a50642b908e6b07a84472a2"), "name" : "javascript", "value" : "vue.js" }
{ "_id" : ObjectId("5a50655b908e6b07a84472a3"), "name" : "shell", "type" : "script" }
>
mongoDB 更新是默認只更新匹配到的第一條數據
若是咱們想更新全部的匹配到的數據,則multi 要設置爲true
例如:咱們的noPk 表 有3個name 都是shell
> db.noPK.find()
{ "_id" : ObjectId("5a50642b908e6b07a84472a2"), "name" : "javascript", "value" : "vue.js" }
{ "_id" : ObjectId("5a50655b908e6b07a84472a3"), "name" : "shell", "type" : "script" }
{ "_id" : ObjectId("5a506b40908e6b07a84472a4"), "name" : "shell", "type" : "script" }
{ "_id" : ObjectId("5a506b9d908e6b07a84472a5"), "name" : "shell", "type" : "script", "script_type" : "bash_shell" }
>
咱們要所有更新他們
> db.noPK.update({"name":"shell"}, {$set:{"name":"Xshell"}}, false, true)
WriteResult({ "nMatched" : 3, "nUpserted" : 0, "nModified" : 3 })