MongoDB常用操作---更新update方法
mongodb兩個更新命令
-
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,就把按條件查出來多條記錄全部更新。
例:db.test0.update( { "count" : { $gt : 1 } } , { $set : { "test2" : "OK"} } ); 只更新了第一條記錄
db.test0.update( { "count" : { $gt : 3 } } , { $set : { "test2" : "OK"} },false,true ); 全更新了
db.test0.update( { "count" : { $gt : 4 } } , { $set : { "test5" : "OK"} },true,false ); 只加進去了第一條
db.test0.update( { "count" : { $gt : 5 } } , { $set : { "test5" : "OK"} },true,true ); 全加進去了
db.test0.update( { "count" : { $gt : 15 } } , { $inc : { "count" : 1} },false,true );全更新了
db.test0.update( { "count" : { $gt : 10 } } , { $inc : { "count" : 1} },false,false );只更新了第一條 -
save
db.collection.save( x ) x就是要更新的對象,只能是單條記錄。
如果在collection內已經存在一個和x對象相同的"_id"的記錄。mongodb就會把x對象替換collection內已經存在的記錄,否則將會插入x對象,如果x內沒有_id,系統會自動生成一個再插入。相當於上面update語句的upsert=true,multi=false的情況。
例:db.test0.save({count:40,test1:"OK"}); #_id系統會生成 db.test0.save({_id:40,count:40,test1:"OK"}); #如果test0內有_id等於40的,會替換,否則插入。
mongodb的更新操作符
-
inc
用法:{ $inc : { field : value } }
對一個數字字段field增加valuedb.test0.update( { "storeId":{ $gt : 5500 }} , { $inc : { "storeId" : 20} } ); db.test0.update( { "storeId":{ $gt : 5500 }} , { $inc : { "storeId" : -20} } );
-
unset
用法:{ $unset : { field : 1} }
刪除字段(注意不是刪除行數據)db.test0.update( { "storeId":{ $gt : 5500 }} , { $unset : { "type" : "hello"} } );
-
push
用法:{ $push : { field : value } }
把value追加到field里面去,
如果field存在,則一定要是數組類型才行(否則會報錯:The field 'test1' must be an array but is of type String in document)
如果field不存在,會新增一個數組類型加進去。db.test0.update( { "_id" : 15 } , { $push : { "test1" : ["aaa"] } } );
-
pushAll
用法:{ $pushAll : { field : value_array } }
同$push,只是一次可以追加多個值到一個數組字段內。(否則會報錯:$pushAll requires an array of values but was given an String)db.test0.update( { "_id" : 15 } , { $pushAll : { "test1" : ["aaa","bbb"] } } );
-
addToSet
用法:{ $addToSet : { field : value } }
增加一個值到數組內,而且只有當這個值不在數組內才增加。db.test0.update( { "storeId":{ $gt : 5600 }} , { $addToSet :{ "test1": "vvv" } } );
-
pop
刪除最后一個值:{ $pop : { field : 1 } }刪除第一個值:{ $pop : { field : -1 } }
注意,只能刪除一個值,也就是說只能用1或-1,而不能用2或-2來刪除兩條。mongodb 1.1及以后的版本才可以用db.test0.update( { "storeId":{ $gt : 5600 }} , { $pop : { "test1": -1 } } );
-
pull
用法:$pull : { field : value } }
從數組field內刪除一個等於value值。 (所有等於value的都會刪除)db.test0.update( { "_id" : 15 } , { $pull : { "test1": "ggg" } } );
-
pullAll
用法:{ $pullAll : { field : value_array } }
同$pull,可以一次刪除數組內的多個值。(所有等於value的都會刪除)db.test0.update( { "_id" : 15 } , { $pullAll : { "test1": [ "ccc" , "fff" ] } } );
-
$操作符
$是他自己的意思,代表按條件找出的數組里面某項他自己。呵呵,比較坳口。看一下官方的例子:> t.find() { "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 3 }, { "by" : "jane", "votes" : 7 } ] } > t.update( {'comments.by':'joe'}, {$inc:{'comments.$.votes':1}}, false, true ) > t.find() { "_id" : ObjectId("4b97e62bf1d8c7152c9ccb74"), "title" : "ABC", "comments" : [ { "by" : "joe", "votes" : 4 }, { "by" : "jane", "votes" : 7 } ] } 需要注意的是,$只會應用找到的第一條數組項,后面的就不管了。還是看例子: > t.find(); { "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 2, 3, 2 ] } > t.update({x: 2}, {$inc: {"x.$": 1}}, false, true); > t.find(); 還有注意的是$配合$unset使用的時候,會留下一個null的數組項,不過可以用{$pull:{x:null}}刪除全部是null的數組項。例: > t.insert({x: [1,2,3,4,3,2,3,4]}) > t.find() { "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, 3, 4, 3, 2, 3, 4 ] } > t.update({x:3}, {$unset:{"x.$":1}}) > t.find() { "_id" : ObjectId("4bde2ad3755d00000000710e"), "x" : [ 1, 2, null, 4, 3, 2, 3, 4 ] } > {$pull:{x:null}} { "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 3, 3, 2 ] }