您好,登錄后才能下訂單哦!
MongoDB中有哪些查詢語(yǔ)法,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
一、查詢
find方法
db.collection_name.find();
查詢所有的結(jié)果:
select * from users;
db.users.find();
指定返回那些列(鍵):
select name, skills from users;
db.users.find({}, {'name' : 1, 'skills' : 1});
補(bǔ)充說(shuō)明: 第一個(gè){} 放where條件 第二個(gè){} 指定那些列顯示和不顯示 (0表示不顯示 1表示顯示)
where條件:
1.簡(jiǎn)單的等于:
select name, age, skills from users where name = 'hurry';
db.users.find({'name' : 'hurry'},{'name' : 1, 'age' : 1, 'skills' : 1});
2.使用and
select name, age, skills from users where name = 'hurry' and age = 18;
db.users.find({'name' : 'hurry', 'age' : 18},{'name' : 1, 'age' : 1, 'skills' : 1});
3.使用or
select name, age, skills from users where name = 'hurry' or age = 18;
db.users.find({ '$or' : [{'name' : 'hurry'}, {'age' : 18}] },{'name' : 1, 'age' : 1, 'skills' : 1});
4.<, <=, >, >= ($lt, $lte, $gt, $gte )
select * from users where age >= 20 and age <= 30;
db.users.find({'age' : {'$gte' : 20, '$lte' : 30}});
5.使用in, not in ($in, $nin)
select * from users where age in (10, 22, 26);
db.users.find({'age' : {'$in' : [10, 22, 26]}});
6.匹配null
select * from users where age is null;
db.users.find({'age' : null);
7.like (mongoDB 支持正則表達(dá)式)
select * from users where name like "%hurry%";
db.users.find({name:/hurry/});
select * from users where name like "hurry%";
db.users.find({name:/^hurry/});
8.使用distinct
select distinct (name) from users;
db.users.distinct('name');
9.使用count
select count(*) from users;
db.users.count();
10.數(shù)組查詢 (mongoDB自己特有的)
如果skills是 ['java','python']
db.users.find({'skills' : 'java'}); 該語(yǔ)句可以匹配成功
$all
db.users.find({'skills' : {'$all' : ['java','python']}}) skills中必須同時(shí)包含java 和 python
$size
db.users.find({'skills' : {'$size' : 2}}) 遺憾的是$size不能與$lt等組合使用
$slice
db.users.find({'skills' : {'$slice : [1,1]}})
兩個(gè)參數(shù)分別是偏移量和返回的數(shù)量
11.查詢內(nèi)嵌文檔
12.強(qiáng)大的$where查詢
db.foo.find();
{ "_id" : ObjectId("4e17ce0ac39f1afe0ba78ce4"), "a" : 1, "b" : 3, "c" : 10 }
{ "_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6 }
如果要查詢 b = c 的文檔怎么辦?
> db.foo.find({"$where":function(){
for(var current in this){
for(var other in this){
if(current != other && this[current] == this[other]){
return true;
}
}
}
return false;
}});
{ "_id" : ObjectId("4e17ce13c39f1afe0ba78ce5"), "a" : 1, "b" : 6, "c" : 6 }
1 ) . 大于,小于,大于或等于,小于或等于
$gt:大于
$lt:小于
$gte:大于或等于
$lte:小于或等于
例子:
db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value
db.collection.find({ "field" : { $lt: value } } ); // less than : field < value
db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value
db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value
如查詢j大于3,小于4:
db.things.find({j : {$lt: 3}});
db.things.find({j : {$gte: 4}});
也可以合并在一條語(yǔ)句內(nèi):
db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value
2) 不等于 $ne
例子:
db.things.find( { x : { $ne : 3 } } );
3) in 和 not in ($in $nin)
語(yǔ)法:
db.collection.find( { "field" : { $in : array } } );
例子:
db.things.find({j:{$in: [2,4,6]}});
db.things.find({j:{$nin: [2,4,6]}});
4) 取模運(yùn)算$mod
如下面的運(yùn)算:
db.things.find( "this.a % 10 == 1")
可用$mod代替:
db.things.find( { a : { $mod : [ 10 , 1 ] } } )
5) $all
$all和$in類似,但是他需要匹配條件內(nèi)所有的值:
如有一個(gè)對(duì)象:
{ a: [ 1, 2, 3 ] }
下面這個(gè)條件是可以匹配的:
db.things.find( { a: { $all: [ 2, 3 ] } } );
但是下面這個(gè)條件就不行了:
db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
6) $size
$size是匹配數(shù)組內(nèi)的元素?cái)?shù)量的,如有一個(gè)對(duì)象:{a:["foo"]},他只有一個(gè)元素:
下面的語(yǔ)句就可以匹配:
db.things.find( { a : { $size: 1 } } );
官網(wǎng)上說(shuō)不能用來(lái)匹配一個(gè)范圍內(nèi)的元素,如果想找$size<5之類的,他們建議創(chuàng)建一個(gè)字段來(lái)保存元素的數(shù)量。
You cannot use $size to find a range of sizes (for example: arrays with more than 1 element). If you need to query for a range, create an extra size field that you increment when you add elements.
7)$exists
$exists用來(lái)判斷一個(gè)元素是否存在:
如:
db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回
db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回
8) $type
$type 基于 bson type來(lái)匹配一個(gè)元素的類型,像是按照類型ID來(lái)匹配
類型 和 ID 對(duì)應(yīng)列表 如下 :
http://www.w3cschool.cc/mongodb/mongodb-operators-type.html
更改字段類型 如下 :
http://loo2k.com/blog/mongodb-change-field-type/
http://blog.chinaunix.net/uid-15795819-id-3873422.html
類型和java類型對(duì)比如下:
http://docs.mongodb.org/ecosystem/drivers/java-types/
http://docs.mongodb.org/manual/reference/bson-types/
db.things.find( { a : { $type : 2 } } ); // matches if a is a string
db.things.find( { a : { $type : 16 } } ); // matches if a is an int
9)正則表達(dá)式
mongo支持正則表達(dá)式,如:
db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是區(qū)分大小寫(xiě)
10) 查詢數(shù)據(jù)內(nèi)的值
下面的查詢是查詢colors內(nèi)red的記錄,如果colors元素是一個(gè)數(shù)據(jù),數(shù)據(jù)庫(kù)將遍歷這個(gè)數(shù)組的元素來(lái)查詢。
db.things.find( { colors : "red" } );
11) $elemMatch
如果對(duì)象有一個(gè)元素是數(shù)組,那么$elemMatch可以匹配內(nèi)數(shù)組內(nèi)的元素:
> t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } )
{ "_id" : ObjectId("4b5783300334000000000aa9"),
"x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]
}
$elemMatch : { a : 1, b : { $gt : 1 } } 所有的條件都要匹配上才行。
注意,上面的語(yǔ)句和下面是不一樣的。
> t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )
$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 }
12) 查詢嵌入對(duì)象的值
db.postings.find( { "author.name" : "joe" } );
注意用法是author.name,用一個(gè)點(diǎn)就行了。更詳細(xì)的可以看這個(gè)鏈接: dot notation
舉個(gè)例子:
> db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
如果我們要查詢 authors name 是Jane的, 我們可以這樣:
> db.blog.findOne({"author.name" : "Jane"})
如果不用點(diǎn),那就需要用下面這句才能匹配:
db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})
下面這句:
db.blog.findOne({"author" : {"name" : "Jane"}})
是不能匹配的,因?yàn)閙ongodb對(duì)于子對(duì)象,他是精確匹配。
13) 元操作符 $not 取反
如:
db.customers.find( { name : { $not : /acme.*corp/i } } );
db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );
mongodb還有很多函數(shù)可以用,如排序,統(tǒng)計(jì)等,請(qǐng)參考原文。
mongodb目前沒(méi)有或(or)操作符,只能用變通的辦法代替,可以參考下面的鏈接:
http://www.mongodb.org/display/DOCS/OR+operations+in+query+expressions
分類: MongoDB
二、更新
mongodb更新有兩個(gè)命令:
1).update()命令
db.collection.update( criteria, objNew, upsert, multi )
criteria : update的查詢條件,類似sql update查詢內(nèi)where后面的
objNew : update的對(duì)象和一些更新的操作符(如$,$inc...)等,也可以理解為sql update查詢內(nèi)set后面的
upsert : 這個(gè)參數(shù)的意思是,如果不存在update的記錄,是否插入objNew,true為插入,默認(rèn)是false,不插入。
multi : mongodb默認(rèn)是false,只更新找到的第一條記錄,如果這個(gè)參數(shù)為true,就把按條件查出來(lái)多條記錄全部更新。
例:
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 );只更新了第一條
2).save()命令
db.collection.save( x )
x就是要更新的對(duì)象,只能是單條記錄。
如果在collection內(nèi)已經(jīng)存在一個(gè)和x對(duì)象相同的"_id"的記錄。mongodb就會(huì)把x對(duì)象替換collection內(nèi)已經(jīng)存在的記錄,否則將會(huì)插入x對(duì)象,如果x內(nèi)沒(méi)有_id,系統(tǒng)會(huì)自動(dòng)生成一個(gè)再插入。相當(dāng)于上面update語(yǔ)句的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的更新操作符:
1) $inc
用法:{ $inc : { field : value } }
意思對(duì)一個(gè)數(shù)字字段field增加value,例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 16, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 17, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : 2 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 19, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $inc : { "count" : -1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "TESTTEST", "test2" : "OK", "test3" : "TESTTEST", "test4" : "OK", "test5" : "OK" }
2) $set
用法:{ $set : { field : value } }
就是相當(dāng)于sql的set field = value,全部數(shù)據(jù)類型都支持$set。例:
> db.test0.update( { "_id" : 15 } , { $set : { "test1" : "testv1","test2" : "testv2","test3" : "testv3","test4" : "testv4" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : "testv1", "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
3) $unset
用法:{ $unset : { field : 1} }
顧名思義,就是刪除字段了。例:
> db.test0.update( { "_id" : 15 } , { $unset : { "test1":1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test2" : "testv2", "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $unset : { "test2": 0 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test3" : "testv3", "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $unset : { "test3":asdfasf } } );
Fri May 14 16:17:38 JS Error: ReferenceError: asdfasf is not defined (shell):0
> db.test0.update( { "_id" : 15 } , { $unset : { "test3":"test" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test4" : "testv4", "test5" : "OK" }
沒(méi)看出field : 1里面的1是干什么用的,反正只要有東西就行。
4) $push
用法:{ $push : { field : value } }
把value追加到field里面去,field一定要是數(shù)組類型才行,如果field不存在,會(huì)新增一個(gè)數(shù)組類型加進(jìn)去。例:
> db.test0.update( { "_id" : 15 } , { $set : { "test1" : ["aaa","bbb"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb" ], "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $push : { "test1": "ccc" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $push : { "test2": "ccc" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $push : { "test1": ["ddd","eee"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }5) $pushAll
5) $pushAll
用法:{ $pushAll : { field : value_array } }
同$push,只是一次可以追加多個(gè)值到一個(gè)數(shù)組字段內(nèi)。例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $pushAll : { "test1": ["fff","ggg"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "aaa", "bbb", "ccc", [ "ddd", "eee" ], "fff", "ggg" ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
6) $addToSet
用法:{ $addToSet : { field : value } }
增加一個(gè)值到數(shù)組內(nèi),而且只有當(dāng)這個(gè)值不在數(shù)組內(nèi)才增加。例:
> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555"],
"test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK"
}
> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": {$each : ["444","555"] } } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555"], "test2" : [ "ccc" ],
"test4" : "testv4", "test5" : "OK"
}
> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555",["444","555"]], "test2" : [ "ccc" ],
"test4" : "testv4", "test5" : "OK"
}
> db.test0.update( { "_id" : 15 } , { $addToSet : { "test1": ["444","555"] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : ["aaa","bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444","555",["444","555"]], "test2" : [ "ccc" ],
"test4" : "testv4", "test5" : "OK"
}
7) $pop
刪除數(shù)組內(nèi)的一個(gè)值
用法:
刪除最后一個(gè)值:{ $pop : { field : 1 } }刪除第一個(gè)值:{ $pop : { field : -1 } }
注意,只能刪除一個(gè)值,也就是說(shuō)只能用1或-1,而不能用2或-2來(lái)刪除兩條。mongodb 1.1及以后的版本才可以用,例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : ["bbb","ccc",["ddd","eee"],"fff","ggg",["111","222"],"444"],
"test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK"
}
> db.test0.update( { "_id" : 15 } , { $pop : { "test1": -1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : ["ccc",["ddd","eee"],"fff","ggg",["111","222"],"444"],
"test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK"
}
> db.test0.update( { "_id" : 15 } , { $pop : { "test1": 1 } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18,
"test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4",
"test5" : "OK"
}
8) $pull
用法:$pull : { field : value } }
從數(shù)組field內(nèi)刪除一個(gè)等于value值。例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", "ggg", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4",
"test5" : "OK" }
> db.test0.update( { "_id" : 15 } , { $pull : { "test1": "ggg" } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5"
: "OK" }
9) $pullAll
用法:{ $pullAll : { field : value_array } }
同$pull,可以一次刪除數(shù)組內(nèi)的多個(gè)值。例:
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ "ccc", [ "ddd", "eee" ], "fff", [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5"
: "OK" }
> db.test0.update( { "_id" : 15 } , { $pullAll : { "test1": [ "ccc" , "fff" ] } } );
> db.test0.find( { "_id" : 15 } );
{ "_id" : { "floatApprox" : 15 }, "count" : 18, "test1" : [ [ "ddd", "eee" ], [ "111", "222" ] ], "test2" : [ "ccc" ], "test4" : "testv4", "test5" : "OK" }
10) $ 操作符
$是他自己的意思,代表按條件找出的數(shù)組里面某項(xiàng)他自己。呵呵,比較坳口。看一下官方的例子:
> 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),不過(guò)可以用{$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 ] }
{ "_id" : ObjectId("4b9e4a1fc583fa1c76198319"), "x" : [ 1, 3, 3, 2 ] }
============ 數(shù)組元素操作示例 ================
> db.arraytest.insert({id:2, name:'leon', comments:[{id:'011', content:'cmt11'}, {id:'012', content:'cmt12'}, {id:'013', content:'cmt13'}]})
1. 數(shù)組內(nèi)的元素可以直接查詢
> db.arraytest.find({'comments.id':'002'})
2. 更新數(shù)組中的某個(gè)節(jié)點(diǎn)的值,用$符號(hào)
db.arraytest.update({'comments.id':'012'}, {$set: {'comments.$.content':'cmtttt012'}})
3. 刪除數(shù)組中的某一列,變成null
> db.arraytest.update({'comments.id':'012'}, {$unset: {'comments.$':1}})
4. 向數(shù)組中添加一個(gè)元素,如果之前沒(méi)有元素則會(huì)新建數(shù)組
> db.arraytest.update({'comments.id':'112'}, {$push: {'comments.$.reply': {'rid':'r21', content:'reply22'}}})
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。