版本一:7 _' u4 g) C$ a9 B7 L4 _
6 _& \* O' O6 O3 C, b1 ) . 大于,小于,大于或等于,小于或等于
; S' \( M8 @9 M3 c4 X4 |$ d
: T3 i% n0 c0 x8 _" t$gt:大于* X& c2 }5 n i M
$lt:小于+ F8 o' q! d: L. c# @
$gte:大于或等于
7 m6 M* x" e. Z6 J$ r) X6 o$lte:小于或等于
" @+ e) t9 B5 E! v2 i* O
: X' s3 |& B4 l例子: - db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value' Y3 { R# q, ^# X, m ?
- db.collection.find({ "field" : { $lt: value } } ); // less than : field < value' D+ [% T4 V- ^% H
- db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value
h5 O0 T+ {, T+ |6 Q: Y* R - db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value
复制代码 _% V$ P) I+ _6 h& e$ @7 b1 O
如查询j大于3,小于4: - db.things.find({j : {$lt: 3}});. j) Q: x& Y% y) ?. E
- db.things.find({j : {$gte: 4}});
复制代码 2 D* u0 d) t5 v) D
也可以合并在一条语句内: - db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value
复制代码 / J! W5 r0 Y" ^. v; k
0 f* W$ b; i! H# g
7 B" q( Y& |: E. _/ [6 ^; ~# s2) 不等于 $ne 例子: - db.things.find( { x : { $ne : 3 } } );
复制代码 ) z# j, O" g) K8 N! L8 v
3) in 和 not in ($in $nin)- Z2 }9 }, K. Q/ V% |3 I# ?
: R# l; \% Z2 C1 q: b; y# ^# y
语法: - db.collection.find( { "field" : { $in : array } } );
复制代码 ! {8 Q: A0 U7 g* K+ n9 }
例子: - db.things.find({j:{$in: [2,4,6]}});
# ]5 f1 t& n& d. _! y/ { - db.things.find({j:{$nin: [2,4,6]}});
复制代码
- K# s: E3 d6 e$ u; c8 p/ J2 d% R+ s K( ~$ d
4) 取模运算$mod
" P7 h9 X9 u! Y3 }+ p: q; Y% J/ P7 C
, Z7 `, L5 ?) d: i如下面的运算: - db.things.find( "this.a % 10 == 1")
复制代码
0 N" u- @6 A- b可用$mod代替: - db.things.find( { a : { $mod : [ 10 , 1 ] } } )
复制代码
1 e7 R" }5 D$ B6 Q3 q. i, V1 c& L; d2 X/ `/ j0 I
5) $all
5 e& i% b% t: x2 i# t# g6 m! I# ~9 y# H# p
$all和$in类似,但是他需要匹配条件内所有的值:
' N. O5 O/ g3 m8 ]. K
+ L1 f" \# J) V9 L如有一个对象:- ]$ {# f' n' ~7 l8 @$ V4 Y( T
4 V$ p9 K" w/ K! e' C
下面这个条件是可以匹配的: - db.things.find( { a: { $all: [ 2, 3 ] } } );
复制代码 $ E4 H3 f+ v1 g9 E
但是下面这个条件就不行了: - db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
复制代码
c8 p6 h2 K: r
2 t% l+ E9 p; Q6) $size
5 j0 ?2 g% l8 c* U$ J( n( [! t- X( `/ @' E3 P+ Y
$size是匹配数组内的元素数量的,如有一个对象:{a:["foo"]},他只有一个元素:- M% P9 C' f( x9 S- d! Z
: Q. x$ l9 R( U1 I z0 u5 i
下面的语句就可以匹配:
- db.things.find( { a : { $size: 1 } } );
复制代码 - Q# ]5 m/ h9 B6 [' }1 q: E
官网上说不能用来匹配一个范围内的元素,如果想找$size<5之类的,他们建议创建一个字段来保存元素的数量。 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 `4 G% n6 [4 i7 A6 U7)$exists $exists用来判断一个元素是否存在: 如: - db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回
$ v* K& }" ]* ?5 v - db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回
复制代码 , O) [$ } K1 ]* a; K* v+ F b8 f" A3 N
8) $type $type 基于 bson type来匹配一个元素的类型,像是按照类型ID来匹配,不过我没找到bson类型和id对照表。 - db.things.find( { a : { $type : 2 } } ); // matches if a is a string& N6 `3 w3 O8 r
- db.things.find( { a : { $type : 16 } } ); // matches if a is an int
复制代码 ( {) x4 y: _2 D# O% _
9)正则表达式
8 q1 B0 ]4 {. k% E# [: q- `3 C- m
mongo支持正则表达式,如: - db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是区分大小写
复制代码
% P5 H! f1 J+ Z/ F10) 查询数据内的值
9 ~0 G5 S# J& Z9 o$ F2 y: o5 _2 ]* v# [7 p' n8 i
下面的查询是查询colors内red的记录,如果colors元素是一个数据,数据库将遍历这个数组的元素来查询。 - db.things.find( { colors : "red" } );
复制代码
& u# o: R3 ]9 ^1 `11) $elemMatch
" B% k3 O9 ~$ r. `4 F6 t, Z3 B3 I+ t- O, L, \) m2 [; Z
如果对象有一个元素是数组,那么$elemMatch可以匹配内数组内的元素: - > t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } ) 0 _9 N8 D }, z* l( j4 S
- { "_id" : ObjectId("4b5783300334000000000aa9"),
# q9 N4 R3 G0 t# _, } - "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]
3 T3 O9 f! ]: u4 h6 W - }
复制代码
5 y' `" j8 s; P$elemMatch : { a : 1, b : { $gt : 1 } } 所有的条件都要匹配上才行。注意,上面的语句和下面是不一样的。 > t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )
! |6 A8 Q% J0 v+ N) F$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 }
% L# x& Z6 }. E
& w9 j& C; W- \$ x8 f12) 查询嵌入对象的值 - db.postings.find( { "author.name" : "joe" } );
复制代码 1 ?2 e' d5 y+ ^) R
举个例子: - > db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
复制代码
4 M& E* v, x/ _; Q' _如果我们要查询 authors name 是Jane的, 我们可以这样: - > db.blog.findOne({"author.name" : "Jane"})
复制代码 ! {1 O4 V+ A( y3 Q! W
如果不用点,那就需要用下面这句才能匹配: - db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})
复制代码
* N7 t4 s$ r4 X7 y6 F6 k% N下面这句: - db.blog.findOne({"author" : {"name" : "Jane"}})
复制代码 8 s& y- B) {9 {* L7 f5 c Y
是不能匹配的,因为mongodb对于子对象,他是精确匹配。 * ?, m% W/ t3 g, ?/ ?* U7 h$ y
13) 元操作符 $not 取反 如: - db.customers.find( { name : { $not : /acme.*corp/i } } );4 T- a) w3 x. t, a: f
- db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );
复制代码 . G! Y% u2 P5 ~! L
shell 环境下的操作: 1. 超级用户相关: 1. #进入数据库admin + O) V* D, X9 M+ V8 t% \5 |
$ H% a3 w _& a& j+ \9 R) r' g 2. #增加或修改用户密码 3. #查看用户列表 4. #用户认证
' W0 P9 {& ?4 M8 H) Q0 P$ K) C" x 5. #删除用户 ( B" l' q( `4 O% j- G# D# P) i1 F
6. #查看所有用户 7. #查看所有数据库 8. #查看所有的collection 9. #查看各collection的状态 - db.printCollectionStats()
复制代码 : S- P7 r1 X5 R! A! h9 }: `6 W T
10. #查看主从复制状态 - db.printReplicationInfo()
复制代码
v% i* {4 c, O8 c7 j9 c }5 q 11. #修复数据库
: M6 z" p1 Y; {( [$ A) u7 t$ V* { 12. #设置记录profiling,0=off 1=slow 2=all 13. #查看profiling 14. #拷贝数据库 - db.copyDatabase('mail_addr','mail_addr_tmp')
复制代码 + V0 D" a) b/ M
15. #删除collection 16. #删除当前的数据库 2. 增删改 1. #存储嵌套的对象 - db.foo.save({'name':'ysz','address':{'city':'beijing','post':100096},'phone':[138,139]})
复制代码
: r j: O" W8 E/ C* E: C 2. #存储数组对象 - db.user_addr.save({'Uid':'yushunzhi@sohu.com','Al':['test-1@sohu.com','test-2@sohu.com']})
复制代码
: f. _" T% g# w" M1 |: G 3. #根据query条件修改,如果不存在则插入,允许修改多条记录 - db.foo.update({'yy':5},{'$set':{'xx':2}},upsert=true,multi=true)
复制代码
5 }- j6 G7 V/ r5 f) W+ R) Z 4. #删除yy=5的记录 1 ^, [8 d/ W/ `' R/ \7 E( @/ Y( N
5. #删除所有的记录 3. 索引 1. #增加索引:1(ascending),-1(descending) 2. db.foo.ensureIndex({firstname: 1, lastname: 1}, {unique: true}); 3. #索引子对象 4. db.user_addr.ensureIndex({'Al.Em': 1}) 5. #查看索引信息 6. db.foo.getIndexes() 7. db.foo.getIndexKeys() 8. #根据索引名删除索引 9. db.user_addr.dropIndex('Al.Em_1') 4. 查询 1. #查找所有 2. db.foo.find() 3. #查找一条记录 4. db.foo.findOne() 5. #根据条件检索10条记录 6. db.foo.find({'msg':'Hello 1'}).limit(10) 7. #sort排序 8. db.deliver_status.find({'From':'ixigua@sina.com'}).sort({'Dt',-1}) 9. db.deliver_status.find().sort({'Ct':-1}).limit(1) 10. #count操作 11. db.user_addr.count() 12. #distinct操作,查询指定列,去重复 13. db.foo.distinct('msg') 14. #”>=”操作 15. db.foo.find({"timestamp": {"$gte" : 2}}) 16. #子对象的查找 17. db.foo.find({'address.city':'beijing'}) 5. 管理 1. #查看collection数据的大小 2. db.deliver_status.dataSize() 3. #查看colleciont状态 4. db.deliver_status.stats() 5. #查询所有索引的大小 6. db.deliver_status.totalIndexSize() $ o6 @4 s! l& L- V5 v @
6. 高级查询 条件操作符 ) r/ q7 g2 O; \" M4 @8 d
- $gt : >
) l: N, [5 {2 s& q# x" A - $lt : < $ d9 @2 N* J, l& L+ V
- $gte: >=
1 u8 Y5 `+ {$ H2 G; G3 u% q - $lte: <= ' @, r3 |' e* V
- $ne : !=、<>
; D7 j) S8 G S- o2 Q' H( o* y! o - $in : in 4 j* N! E% w/ @; G- ?
- $nin: not in
# b# P8 d) T- P" P3 }. ^ - $all: all
0 S& c0 p2 D2 Z0 k& Z! t. t - $not: 反匹配(1.3.3及以上版本)
复制代码 m8 l& O: x0 c8 n% {
' S& Q1 b4 K9 s查询 name <> "bruce" and age >= 18 的数据 ' R7 S( x8 p. {- j
- db.users.find({name: {$ne: "bruce"}, age: {$gte: 18}});
复制代码
5 F% L* q- U' J! f( G: K' g3 z: ^. E# q! n2 y' M2 Y
查询 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的数据 1 }3 p: S' o! n' S/ l: K
- db.users.find({creation_date:{$gt:new Date(2010,0,1), $lte:new Date(2010,11,31)});
复制代码 # _9 F4 y8 \; w) W
! T7 T# b9 H/ h7 {) w查询 age in (20,22,24,26) 的数据
) m) m# y9 V7 C4 j2 p- db.users.find({age: {$in: [20,22,24,26]}});
复制代码
; k I3 h' }5 q! V, Z' n6 n8 K6 ]+ Y$ }8 w; c1 }; H
查询 age取模10等于0 的数据
! H0 m& `3 o6 w! q: w, | g- db.users.find('this.age % 10 == 0');
复制代码 I9 W3 |% F# I* G# E0 b+ o! E
或者 , [, Z& U B% s7 U2 e' p+ m5 H8 ?
- db.users.find({age : {$mod : [10, 0]}});
复制代码
! k6 y, I4 _ x$ D) R4 G/ `5 _0 t/ I, }* w7 g
匹配所有
* K! y$ w, ?' `- i; q% i- db.users.find({favorite_number : {$all : [6, 8]}});
复制代码 - Y# i6 x$ L) @# j) ~
可以查询出{name: 'David', age: 26, favorite_number: [ 6, 8, 9 ] } 4 N, z# F; i3 K$ U
可以不查询出{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }
3 T; J1 g9 Q1 ?
, @ d3 h3 h; ?/ G, o7 w查询不匹配name=B*带头的记录
* y# S" v% e8 D5 Z/ ]- db.users.find({name: {$not: /^B.*/}});
复制代码
" }) p1 y) B2 H0 x查询 age取模10不等于0 的数据 p4 v- r/ u+ W9 V3 N' Z& F7 O1 U' m
- db.users.find({age : {$not: {$mod : [10, 0]}}});
复制代码 ; T0 W# d; U( D7 |0 w- ~
# s2 f: @' V n4 r" ^9 I
#返回部分字段
! A9 K8 a) T" B- M4 S' L选择返回age和_id字段(_id字段总是会被返回)
0 t% a# N2 v/ F. W- db.users.find({}, {age:1});
: ^. t# q" |0 q0 W# h- U - db.users.find({}, {age:3});
) x" i6 k( C2 x$ N# ]& a3 s/ X# u - db.users.find({}, {age:true}); 8 Z q) t6 ^4 q6 Y$ n
- db.users.find({ name : "bruce" }, {age:1});
复制代码 2 ~7 N) h! g+ f: D0 Q9 E
0为false, 非0为true * ]/ M5 Q7 t- m5 Y8 ?! L
7 p! S5 j/ }% Z$ f1 @4 ]9 B选择返回age、address和_id字段
# I1 d: {/ s, a- db.users.find({ name : "bruce" }, {age:1, address:1});
复制代码
5 U2 V9 @7 c+ E8 p) W- X4 l* {. s( }0 B) }! ]; o# h
排除返回age、address和_id字段 ; b! {3 P' T* d5 n" t
- db.users.find({}, {age:0, address:false}); . g6 h9 p# z* a1 n8 h, ^& v
- db.users.find({ name : "bruce" }, {age:0, address:false});
复制代码 " B& ?* @6 v, s& n# D) C1 }/ r: z
& f- |8 H9 n& ?' a: `! @1 P0 `数组元素个数判断 8 h- s3 M7 X& `% U9 S' O8 \- I0 Y
对于{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }记录 8 A3 \5 p4 x* K: N% L
匹配db.users.find({favorite_number: {$size: 3}});
0 [6 }- b* U, I不匹配db.users.find({favorite_number: {$size: 2}}); ( y8 p/ x4 A) \( T4 |# v+ L- [% ^
_, m% U! u3 T& v$exists判断字段是否存在
P4 @6 q# h* [% R- k8 D2 t# Z查询所有存在name字段的记录
+ i1 G e2 R6 o% y/ f- db.users.find({name: {$exists: true}});
复制代码 $ g i: M9 J# D0 z- |
查询所有不存在phone字段的记录
" F2 H0 K1 Z4 z# t- db.users.find({phone: {$exists: false}});
复制代码
: _- P* p0 v8 S7 n C3 ~3 a; f; {9 u! C# | r1 c/ g
$type判断字段类型 1 `) w! D/ Y$ ]+ k' }6 K) R
查询所有name字段是字符类型的 - c1 P: [0 |, _$ y; d/ w
- db.users.find({name: {$type: 2}}); q! E7 X3 {% z% y
复制代码 $ h: j6 y: ]" m
查询所有age字段是整型的
7 k8 c$ K/ U3 p9 R- db.users.find({age: {$type: 16}});
* n8 a# }/ y( u3 X, E7 p8 k
复制代码
5 F: g8 T% T/ d8 r4 K$ U7 K5 [) t对于字符字段,可以使用正则表达式
, r( ^& |: b6 J/ a5 ^查询以字母b或者B带头的所有记录
6 J8 K& L% R) z5 Y9 u. U- db.users.find({name: /^b.*/i}); ( E R0 J( A7 I6 T
复制代码
; H" ]0 w; d/ j! X- K" p% L$elemMatch(1.3.1及以上版本)
& s/ {) Z; R4 q( n3 z5 C为数组的字段中匹配其中某个元素 2 u$ c& T$ J, q" S s9 ~ \! N6 B9 ?
. [5 C* R7 A$ r5 i& w* p# @Javascript查询和$where查询 ; X) [+ N! B& _2 w6 X% f
查询 age > 18 的记录,以下查询都一样 9 A4 h s' b( X) s: w
- db.users.find({age: {$gt: 18}}); _9 |* g+ {: c1 O! F7 g3 ^
- db.users.find({$where: "this.age > 18"});
: T; |, e ]2 f8 h$ T3 s - db.users.find("this.age > 18");
8 b+ E" a7 A4 v4 {+ r- D - f = function() {return this.age > 18} db.users.find(f);
复制代码 $ R7 I& m6 Y( [% v
! s( |+ M, `, ^6 u, f# |排序sort()
5 S/ F9 A W7 L1 s+ ]8 O以年龄升序asc 9 B! u) ^/ ]/ f9 Z+ R8 B- t
- db.users.find().sort({age: 1});
( \6 U7 m7 D7 T2 ^9 Z. H
复制代码
3 U" c. _. B% y以年龄降序desc . {6 L' s. K0 K9 C/ y6 F" b
- db.users.find().sort({age: -1}); % o C8 m y" N3 T% Z
复制代码
$ U( @" ]3 ~5 @' u6 H- e# j限制返回记录数量limit() , L0 U1 F9 Z V& j' z% t; a( B
返回5条记录
3 ~& h8 ?& ~3 X" x7 [0 w- db.users.find().limit(5);
( O9 {' A! E) w4 V
复制代码 1 d3 X9 d J4 c. K
返回3条记录并打印信息
$ A6 \4 V) B# M" {- db.users.find().limit(3).forEach(function(user) {print('my age is ' + user.age)});
* h$ M, t! w; X' ~
复制代码
' e# ?- d& q8 z8 e结果 3 O2 t0 J3 u2 P
- my age is 18 ! U4 R3 J4 @4 ]2 M
- my age is 19 & [- `: H6 I9 T2 }# g
- my age is 20
复制代码
' v( }% }# h7 M
# o& F3 e* E# G9 h7 N3 }2 @限制返回记录的开始点skip() k+ H8 i9 q; B) q9 x1 I
从第3条记录开始,返回5条记录(limit 3, 5)
8 |5 ?5 t1 S$ v6 [4 z8 I- db.users.find().skip(3).limit(5);
6 J+ L: A7 }4 q* g+ v' U8 Y
复制代码
3 m' H- y$ w; K查询记录条数count()
R( t. y! } }, g) mdb.users.find().count();
4 x, o( S: h4 r. [( [( ~2 udb.users.find({age:18}).count(); , T3 ~2 Y3 @' S3 C: x
以下返回的不是5,而是user表中所有的记录数量
4 ^" ] p8 }# p9 I4 O+ \) t; Odb.users.find().skip(10).limit(5).count(); * Y0 ? L1 j& e1 A
如果要返回限制之后的记录数量,要使用count(true)或者count(非0) 0 l1 u( S" g( q0 K2 H6 X
- db.users.find().skip(10).limit(5).count(true);
复制代码 9 U/ f' N! U1 G1 N1 r
2 J) @6 N7 I! B* T/ B- W% n分组group()
$ p6 G) k/ f5 ^) l, Z7 `假设test表只有以下一条数据
' E2 v6 r# j4 [- ]2 B8 i- { domain: "www.mongodb.org"
: Z: r% o2 A3 F& M' e - , invoked_at: {d:"2009-11-03", t:"17:14:05"} 8 y8 c4 P- c# _ a0 d; c8 q5 f
- , response_time: 0.05 $ S- h7 K" R. V2 ~
- , http_action: "GET /display/DOCS/Aggregation" ) j% }" j" o# n; h
- }
复制代码 ; o' j& V8 B6 j5 H3 }* K6 V
使用group统计test表11月份的数据count:count(*)、total_time:sum(response_time)、avg_time:total_time/count;
5 E. y1 f, T, I+ } Z- db.test.group(
v; D( K* q7 Q# q' l8 O - { cond: {"invoked_at.d": {$gt: "2009-11", $lt: "2009-12"}}
/ G- H, i2 |" C$ A2 t2 G - , key: {http_action: true}
) v1 P* Z7 ~( ] w* x/ U - , initial: {count: 0, total_time:0}
! m* }! x% F; G8 A1 i& Y - , reduce: function(doc, out){ out.count++; out.total_time+=doc.response_time }
) J" t9 B: H5 k7 I5 q3 p3 q7 u6 Z - , finalize: function(out){ out.avg_time = out.total_time / out.count } / d1 s9 W2 a. b6 k4 W1 @* V, \
- } ); " {) u" g( G0 j: I& F
7 ]& T ^2 |0 x( J- [ 6 }; ^6 X- c' ^* ?4 z) l" M
- { : ?) ?( K4 \1 p0 A2 ?! N
- "http_action" : "GET /display/DOCS/Aggregation",
! D, _0 d/ T# d+ r* d2 k - "count" : 1,
) }& B7 Z/ Z4 f4 T! ~' B - "total_time" : 0.05,
# E7 N B1 \0 ]9 W# S - "avg_time" : 0.05
/ _; X/ x0 l* R - } ! \! B" Y1 X$ m% d7 ]; c7 s
- ]
复制代码
5 x5 ~( |' `* Z4 O7 w+ F) g2 k! C0 d: P% A$ l0 Z
0 G5 M+ L. Y4 M% ^) g# c. C3 ?
MongoDB 高级聚合查询MongoDB版本为:2.0.8 系统为:64位Ubuntu 12.04 先给他家看一下我的表结构[Oh sorry, Mongo叫集合] 如你所见,我尽量的模拟现实生活中的场景。这是一个人的实体,他有基本的manId, manName, 有朋友[myFriends],有喜欢的水果[fruits],而且每种水果都有喜欢的权重。 很不好的是你还看见了有个“_class”字段? 因为我是Java开发者, 我还喜欢用Spring,因此我选用了Spring Data Mongo的类库[也算是框架吧,但是我不这么觉得]。 现在有很多人Spring见的腻了也开始烦了。是的,Spring野心很大,他几乎想要垄断Java方面的任何事情。没办法我从使用Spring后就离不开他,以至于其他框架基本上都不用学。我学了Spring的很多,诸如:Spring Security/Spring Integration/Spring Batch等。。。不发明轮子的他已经提供了编程里的很多场景,我利用那些场景解决了工作中的很多问题,也使我的工作变得很高效。从而我又时间学到它更多。Spring Data Mongo封装了mongodb java driver,提供了和SpringJDBC/Template一致编程风格的MongoTemplate。 不说废话了,我们直接来MongoDB吧。 - Max 和Min( B% c/ l. t: j' _3 w" b
我和同事在测试Mongo时,索引还写了不到一半,他想查询某个字段的最大值,结果找了半天文档也没找到关于max的函数。我也很纳闷这是常规函数啊怎么不提供? 后来经过翻阅资料确定Mongo确实不提供直接的max和min函数。但是可以通过间接的方式[sort 和 limit]实现这个。 要查询最大值我们只需要把结果集按照降序排列,取第一个值就是了。 如我的例子,我想取得集合中年龄最大的人。 - db.person.find({}).sort({"age" : -1}).limit(1)
复制代码
1 g2 |9 f# k0 y+ S7 V9 a. }! w5 w
5 K3 U5 h: ^% a' I6 C7 E" G
" \& }) K/ z. R, ?$ y; ^& _相反如果想要年龄最小的人,只需要把sort中改为{“age”:1}就可以了。 当然我们使用了sort,对于小数量的文档是没问题的。当对于大量数据需要给age建立索引,否则这个操作很耗时。 - distinct
/ D/ v) W; y. | I* f
MongoDB的destinct命令是获取特定字段中不同值列表的最简单工具。该命令适用于普通字段,数组字段[myFriends]和数组内嵌文档[fruits]. 如上面的图片,我认为fruits和myFriends字段是不同的。网上很多资料和例子都没说到这个情景,因为我们也业务是fruits这样的模型,我测试了。对于fruits.fruitId他也是可行的。 如上面的表结构,我想统计所有的喜欢的水果。 - db.person.distinct("fruits.fruitId") // 查找对象里引入对象的值,直接加.
复制代码
& h$ ^+ u. d$ b& N% M1 R S# T* Z. _$ q! m7 ^- R
他成功执行了。输出如: - [ "aaa", "bbb", "ccc", "www", "xxx", "yyy", "zzz", "rrr" ]
复制代码 4 l3 y; e7 K# l( M% w
. m9 c# z! G9 k' t r
我想统计集合中共有多少个人[按名字吧] - db.person.distinct("manName")
复制代码 ; M2 h8 ? B" J9 |' v0 |
+ ^& }: D8 \2 s L" i+ {/ X 我想统计指定个数的人的共同关注的朋友。 - db.person.distinct("myFriends", {"manName" : {"$in" : ["ZhenQin", "YangYan"]}})
复制代码 * ~) L5 G; u$ Z9 L5 u) {# v
# p# h7 T% e1 ]1 E6 L. A a% B- f
输出如: -
* g& p& h6 Q: {0 C5 _; l - [ "234567", "345678", "456789", "987654", "ni", "wo" ]
复制代码
9 s, y) d5 L Y, G: Z5 c
( |! w& J$ I6 ^5 z5 I* Z9 \7 x) ~( w. `* G! s1 j) j
那么我使用Java呢? 我只是在演示Mongo的命令,用Spring Data Mongo是怎么操作的? Spring Schema: - <beans xmlns="http://www.springframework.org/schema/beans"+ C. O. h1 I: L/ n' [' m
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"- c& s7 _! m4 W1 s, u0 i1 }
- xmlns:context="http://www.springframework.org/schema/context"
% E" F* o: }1 _1 u6 o" S - xmlns:mongo="http://www.springframework.org/schema/data/mongo"
5 Z! _, j7 V6 ]2 u" C L - xsi:schemaLocation="http://www.springframework.org/schema/beans4 z: }% B, [6 S" d
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
. {) t1 b' a5 X' x - http://www.springframework.org/schema/context
) `8 \( w( j* g+ D( |5 O# q - http://www.springframework.org/schema/context/spring-context-3.1.xsd
0 v1 x& a0 n' h5 W, [" F - http://www.springframework.org/schema/data/mongo
: U, a$ L8 b9 _# L$ B, o* e( Z - http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd">9 D6 p% e; M1 ^5 F
-
2 I1 F3 [! H2 G( j: i" P" `, z7 K - <context:property-placeholder location="classpath:mongo.properties" />
1 Q& ~! ?8 q3 W! f -
5 [' l/ v% v8 m! S) N7 S, n5 {" \ - <!-- Default bean name is 'mongo' -->
8 T' s1 W) Z; K7 v' z - <mongo:mongo id="mongo" host="${mongo.host}" port="${mongo.port}" />+ X( r" ~ S/ M
- - _' f* E @7 N
- <mongo:db-factory id="mongoDbFactory"9 F' ]; `1 \. b% t' @
- mongo-ref="mongo"
, N/ d6 _2 Z; r5 X - dbname="mongotest" />( K4 U9 S6 U1 E- B# O( `
- % `' O1 T' M1 c" g h4 g" z- `
- <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
# _* V% p( n3 \: [0 h: X - <constructor-arg name="mongoDbFactory" ref="mongoDbFactory"/>, ~. [% V6 T% C. U
- </bean>
1 r% u9 a: Y& A* Y4 J7 R - </beans>
复制代码
6 u. W* o8 [& D- g, q8 ]1 A- Q. V, g
. D$ `( ]/ ~: V* o+ x max和min的测试: - @Test
! T; ~. ~8 S7 s, _% C - public void testMaxAndMinAge() throws Exception {: I! u' d5 V8 m( e: G/ _
- Query q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.ASC, "age"))).limit(1);( p7 R' j! @0 t1 S) `9 m
- Person result = mongoTemplate.findOne(q, Person.class);; I# m; L; k6 J# Q: u5 b7 b
- log.info(result);' [2 F8 w$ h, h' e. ]
- 2 \. N- V. l6 }) ^/ ^0 v
- q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.DESC, "age"))).limit(1);
' H! }, Y$ I6 l& F" j- `4 ^ - result = mongoTemplate.findOne(q, Person.class);
+ O) P% g0 ]' ^5 K P$ H$ y7 ^! f - log.info(result);
. w9 I5 U4 e' b; {; ] - }
复制代码 # b) P1 U. d& {; v# u4 T$ h1 ]6 K- Z& b
3 ^3 g: Q4 P+ r2 v distinct的测试: - @Test7 e. D% t5 m/ m
- public void testDistinct() throws Exception {
" Q1 n6 O3 y" e G7 | - List result = mongoTemplate.getCollection("person").distinct("myFriends");
9 `0 x* T% p) X$ l4 z - for (Object o : result) {, |5 b6 H( d. l4 z# @& @) u
- log.info(o);
; F# E/ H' a9 e: \" L - }
, l5 _$ V( a0 Q, m. k - 8 t _4 @$ X6 }" ~$ Z
- log.info("==================================================================");
% Y3 q) n0 q( P - Query query = Query.query(Criteria.where("manId").is("123456"));
0 U5 J) ]$ M# e$ J+ W - result = mongoTemplate.getCollection("person").distinct("myFriends", query.getQueryObject());0 W" S; u$ f9 }/ H
- for (Object o : result) {/ P; _4 Q; b( w8 _; g
- log.info(o);
9 g6 x7 H' D, z3 b - }
0 h" T& Z- Q, m4 \- x6 ^1 L - c! n- d% b+ N5 z& P' t
- log.info("==================================================================");
, t5 S6 o8 B) B5 L" X1 s - result = mongoTemplate.getCollection("person").distinct("fruits.fruitId");
f) j& s3 k, T/ N, t - for (Object o : result) {
, W$ g% }4 e) q' t* I - log.info(o);7 Q C$ i( i8 h
- }
6 v9 E, v3 f% Z# D% E l - }
复制代码
3 Z, q' s7 r- V. k) l# _2 |& j
& ]* d% R, G2 u$ }8 e2 F& V8 _% z 输出的结果为: - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 2345674 a: l* k8 a# g* b/ f
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 345678' h3 F+ w2 N% b M, R
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 456789
+ U! Q- o6 o) Y7 K* P7 J - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 987654
" Y. N% ]; O! _) p; O F3 [ u, l - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] ni
! F5 u9 C( J5 ?1 B. [0 a - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] wo
% i. ^7 ? b# g1 `0 U" y - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 123456. q( F) `2 w3 `! N/ X6 O
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(75)] ==================================================================7 T- f) v: w8 ~
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 234567& r% g% F! v& w+ N, _& M4 f
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 345678
% S9 ]( K6 R* N# A/ h; O. C - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 4567896 b5 F7 e6 L& ]: C) ]/ z+ o! }
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 987654! u7 _/ A8 ~: Y J* t- Y( D
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(82)] ==================================================================
/ B+ S4 f& b$ n2 f* d( V3 _. X - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] aaa( {# W8 t3 Y/ L/ M9 X1 P0 I" ]
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] bbb% T4 z! p( G2 k: S
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] ccc
4 x( O7 {1 O* G! |9 L - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] www
( u3 `6 X+ g# A - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] xxx
* `0 t8 W; ~/ x - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] yyy
+ N# l- J% w+ E4 [9 F# f6 e - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] zzz! [8 U2 O, [* L$ N. h# J4 R6 E
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] rrr# I- M9 L# ^% U0 a4 n+ a2 R
- 12-22 14:13:45 [INFO] [support.GenericApplicationContext(1020)] Closing org.springframework.context.support.GenericApplicationContext@1e0a91ff: startup date [Sat Dec 22 14:13:44 CST 2012]; root of context hierarchy
复制代码 * M7 N$ @* S+ b& P7 ^
7 ?$ ]; z" K( D$ L 这里我要特别说明一下, 当使用了Spring Data Mongo,如上面的findOne(query, Person.class)它就会把查询的结果集转换成Person类的对象。Spring Data Mongo的很多API中都这样,让传入了一个Bean的class对象。因为distinct的测试是输出list<String>的,我 使用的mongo-java-driver的api。他们都很简单,唯一的是Query这个Spring提供的对象,希望读者注意,他几乎封装了所有条件 查询,sort,limit等信息。 2 m) V# d3 c3 X% T+ C9 T1 |7 C
) K! }' d2 t+ H
9 F: e2 ~; F% L+ i1 V/ H8 ` |