mongodb兩個(gè)更新命令
成都創(chuàng)新互聯(lián)從2013年開始,先為深州等服務(wù)建站,深州等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為深州企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。update
db.collection.update( criteria, objNew, upsert, multi )
criteria : update的查詢條件,類似sql update查詢內(nèi)where后面的
objNew : update的對象和一些更新的操作符(如$,$inc...)等,也可以理解為sql update查詢內(nèi)set后面的
upsert : 這個(gè)參數(shù)的意思是,如果不存在update的記錄,是否插入objNew,true為插入,默認(rèn)是false,不插入。
multi : mongodb默認(rèn)是false,只更新找到的第一條記錄,如果這個(gè)參數(shù)為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 ); 只加進(jìn)去了第一條
db.test0.update( { "count" : { $gt : 5 } } , { $set : { "test5" : "OK"} },true,true ); 全加進(jìn)去了
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內(nèi)已經(jīng)存在一個(gè)和x對象相同的"_id"的記錄。mongodb就會(huì)把x對象替換collection內(nèi)已經(jīng)存在的記錄,否則將會(huì)插入x對象,如果x內(nèi)沒有_id,系統(tǒng)會(huì)自動(dòng)生成一個(gè)再插入。相當(dāng)于上面update語句的upsert=true,multi=false的情況。
例:
db.test0.save({count:40,test1:"OK"}); #_id系統(tǒng)會(huì)生成
db.test0.save({_id:40,count:40,test1:"OK"}); #如果test0內(nèi)有_id等于40的,會(huì)替換,否則插入。
mongodb的更新操作符
inc
用法:{ $inc : { field : value } }
對一個(gè)數(shù)字字段field增加value
db.test0.update( { "storeId":{ $gt : 5500 }} , { $inc : { "storeId" : 20} } );
db.test0.update( { "storeId":{ $gt : 5500 }} , { $inc : { "storeId" : -20} } );
unset
用法:{ $unset : { field : 1} }
刪除字段(注意不是刪除行數(shù)據(jù))
db.test0.update( { "storeId":{ $gt : 5500 }} , { $unset : { "type" : "hello"} } );
push
用法:{ $push : { field : value } }
把value追加到field里面去,
如果field存在,則一定要是數(shù)組類型才行(否則會(huì)報(bào)錯(cuò):The field 'test1' must be an array but is of type String in document)
如果field不存在,會(huì)新增一個(gè)數(shù)組類型加進(jìn)去。
db.test0.update( { "_id" : 15 } , { $push : { "test1" : ["aaa"] } } );
pushAll
用法:{ $pushAll : { field : value_array } }
同$push,只是一次可以追加多個(gè)值到一個(gè)數(shù)組字段內(nèi)。(否則會(huì)報(bào)錯(cuò):$pushAll requires an array of values but was given an String)
db.test0.update( { "_id" : 15 } , { $pushAll : { "test1" : ["aaa","bbb"] } } );
addToSet
用法:{ $addToSet : { field : value } }
增加一個(gè)值到數(shù)組內(nèi),而且只有當(dāng)這個(gè)值不在數(shù)組內(nèi)才增加。
db.test0.update( { "storeId":{ $gt : 5600 }} , { $addToSet :{ "test1": "vvv" } } );
pop
刪除最后一個(gè)值:{ $pop : { field : 1 } }刪除第一個(gè)值:{ $pop : { field : -1 } }
注意,只能刪除一個(gè)值,也就是說只能用1或-1,而不能用2或-2來刪除兩條。mongodb 1.1及以后的版本才可以用
db.test0.update( { "storeId":{ $gt : 5600 }} , { $pop : { "test1": -1 } } );
pull
用法:$pull : { field : value } }
從數(shù)組field內(nèi)刪除一個(gè)等于value值。 (所有等于value的都會(huì)刪除)
db.test0.update( { "_id" : 15 } , { $pull : { "test1": "ggg" } } );
pullAll
用法:{ $pullAll : { field : value_array } }
同$pull,可以一次刪除數(shù)組內(nèi)的多個(gè)值。(所有等于value的都會(huì)刪除)
db.test0.update( { "_id" : 15 } , { $pullAll : { "test1": [ "ccc" , "fff" ] } } );
$操作符
$是他自己的意思,代表按條件找出的數(shù)組里面某項(xiàng)他自己。呵呵,比較坳口??匆幌鹿俜降睦樱?/p>
> 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 } ] }
需要注意的是,$只會(huì)應(yīng)用找到的第一條數(shù)組項(xiàng),后面的就不管了。還是看例子:
> t.find();
{ "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 2, 3, 2 ] }
> t.update({x: 2}, {$inc: {"x.$": 1}}, false, true);
> t.find();
還有注意的是$配合$unset使用的時(shí)候,會(huì)留下一個(gè)null的數(shù)組項(xiàng),不過可以用{$pull:{x:null}}刪除全部是null的數(shù)組項(xiàng)。例:
> 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 ] }