版本一:
+ d$ g1 g- C8 a3 @! X- X/ C
$ d }2 ?* I$ c9 F% C( K# Q" ] ?1 ) . 大于,小于,大于或等于,小于或等于
) _* ~3 s. v' j: Y) f! V
# q4 v+ q! E( t, N/ I" x) X$ u$gt:大于. v! O) Q1 Q- E6 a" h$ U
$lt:小于3 m0 G/ C3 X* |3 i ~$ U
$gte:大于或等于( O9 z w4 A* A& E
$lte:小于或等于- _3 D+ h- c5 U! ]
6 e; z2 x0 U! c
例子: - db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value
k- O- V, F1 D6 U" J* B7 L8 Z - db.collection.find({ "field" : { $lt: value } } ); // less than : field < value
! P8 g2 Q6 K& ^8 N - db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value% s* y& z% E4 \( s+ [+ l& u* Z
- db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value
复制代码
+ R6 _* {: D/ J2 m7 ~& j, U如查询j大于3,小于4: - db.things.find({j : {$lt: 3}});
% A5 u+ a- i8 r0 g) T8 R" Y4 o - db.things.find({j : {$gte: 4}});
复制代码
" c' W7 @! }5 T. K6 e; D也可以合并在一条语句内: - db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value
复制代码
]7 ]# N9 x3 d; c, p/ \$ s. D2 [$ q& A) s* ]' D+ R
0 w. e% t7 L1 \
2) 不等于 $ne 例子: - db.things.find( { x : { $ne : 3 } } );
复制代码
& |' B/ u4 X3 \5 H+ r- R n3) in 和 not in ($in $nin)5 q2 o) x+ s v: \* K7 P Q
% p- [' ^. e, E8 g" a' H C& t9 ^语法: - db.collection.find( { "field" : { $in : array } } );
复制代码 * H" M% W4 X! F" s4 B" c4 ~, \
例子: - db.things.find({j:{$in: [2,4,6]}});
7 p" h# [( o6 f* w- J - db.things.find({j:{$nin: [2,4,6]}});
复制代码
* j, K6 H; d3 Y c* ^5 @3 t0 _. |1 c) F8 L) e& ]$ D: U9 ]
4) 取模运算$mod
- L: |8 ?. r8 Z1 `) r" x8 n! \3 U5 _* n5 z6 J4 l8 R: X- ?: w0 f Y5 K0 d
如下面的运算: - db.things.find( "this.a % 10 == 1")
复制代码 6 ?3 ~ Y; Q4 H
可用$mod代替: - db.things.find( { a : { $mod : [ 10 , 1 ] } } )
复制代码 3 H1 x6 [* j8 S9 Y
, g7 E& {: y7 l$ D" b! M7 w5) $all
* T4 ~3 b: u" T4 F; i8 w+ b/ s2 ~ ]- C& I) Z3 M
$all和$in类似,但是他需要匹配条件内所有的值:
; r# f3 t; R, m7 T" p) s; M- j6 z* R# h$ N% _) v
如有一个对象:' F% q6 k' @5 p4 S
0 u7 \% \$ q) [9 A$ Q
下面这个条件是可以匹配的: - db.things.find( { a: { $all: [ 2, 3 ] } } );
复制代码 $ |* A9 t4 v# S" u/ S( w2 D* p9 H s
但是下面这个条件就不行了: - db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
复制代码 5 L$ z! t% b& H$ B! g
2 v* X6 j6 a- P. h2 X: Q
6) $size
8 a5 P e' k# k+ @5 L3 Q( E7 m0 n3 x2 n: h* D+ |0 j, V3 z$ P
$size是匹配数组内的元素数量的,如有一个对象:{a:["foo"]},他只有一个元素: Q' Y/ l/ W' a# K" H
6 `# I3 \# e% l7 J- O
下面的语句就可以匹配: - db.things.find( { a : { $size: 1 } } );
复制代码
, R3 c& S7 v5 z, A: x2 B官网上说不能用来匹配一个范围内的元素,如果想找$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.
* F, W" q" Z* r0 j0 q7)$exists $exists用来判断一个元素是否存在: 如: - db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回$ }! O- L0 ^$ b* M7 f
- db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回
复制代码 3 O$ d5 W% p. A' b, K
8) $type $type 基于 bson type来匹配一个元素的类型,像是按照类型ID来匹配,不过我没找到bson类型和id对照表。 - db.things.find( { a : { $type : 2 } } ); // matches if a is a string; S3 ^8 @* q% q4 O. L4 A+ o+ M8 W
- db.things.find( { a : { $type : 16 } } ); // matches if a is an int
复制代码
. a5 b1 |4 Q3 e( r/ z4 b! {2 O9)正则表达式* o% { d9 c7 I2 j, I7 Y1 O
3 a$ n7 Y4 T) ~mongo支持正则表达式,如: - db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是区分大小写
复制代码
' l7 s4 P! `# I. c10) 查询数据内的值: O. {; ]" n6 L$ K- e Y" `
. Q7 N8 l( U& Z- Z
下面的查询是查询colors内red的记录,如果colors元素是一个数据,数据库将遍历这个数组的元素来查询。 - db.things.find( { colors : "red" } );
复制代码
8 L, x$ Z2 M2 {, c; I5 h) J11) $elemMatch1 [ B( k2 P+ w
# e) _2 q8 C& n
如果对象有一个元素是数组,那么$elemMatch可以匹配内数组内的元素: - > t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } )
1 B1 x- j0 ?5 K; i - { "_id" : ObjectId("4b5783300334000000000aa9"), ! Q/ t# A8 K( j& a5 k" h
- "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]
* a" X8 m' ` v0 A; L - }
复制代码
6 m, G9 @' a0 m8 A$elemMatch : { a : 1, b : { $gt : 1 } } 所有的条件都要匹配上才行。注意,上面的语句和下面是不一样的。 > t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )7 N6 V3 f, x+ P2 |0 |+ N
$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 } 6 v' b% q" U% _- w0 x
" p/ C- M7 ]. c, S1 A/ U
12) 查询嵌入对象的值 - db.postings.find( { "author.name" : "joe" } );
复制代码 2 m+ i* [5 [# K
举个例子: - > db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
复制代码 # [* L7 q( q4 I/ r
如果我们要查询 authors name 是Jane的, 我们可以这样: - > db.blog.findOne({"author.name" : "Jane"})
复制代码 2 [1 o6 h. [) V5 x& f8 S0 V" o) m- M
如果不用点,那就需要用下面这句才能匹配: - db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})
复制代码
! F# `9 \$ t# f: K" s下面这句: - db.blog.findOne({"author" : {"name" : "Jane"}})
复制代码 ) ^& m: T! N2 b$ ~4 V
是不能匹配的,因为mongodb对于子对象,他是精确匹配。 " e. ~3 L% V5 D
13) 元操作符 $not 取反 如: - db.customers.find( { name : { $not : /acme.*corp/i } } );
( H2 x, @# }' { - db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );
复制代码 3 G, X& x: ]0 e$ d* j
shell 环境下的操作: 1. 超级用户相关: 1. #进入数据库admin
0 @4 D3 _" J$ X* O0 p: V
' h1 O0 o" V; ~2 p 2. #增加或修改用户密码 3. #查看用户列表 , f/ T% A/ u' X$ I& P L" [
4. #用户认证 5. #删除用户 6. #查看所有用户 7. #查看所有数据库 8. #查看所有的collection 9. #查看各collection的状态 - db.printCollectionStats()
复制代码 - _; V3 t+ z- _" f+ |1 ^1 R
10. #查看主从复制状态 - db.printReplicationInfo()
复制代码
3 u% n; |! {/ x& v; V. D" h; h 11. #修复数据库
\' T1 ?/ l8 c$ e- ]8 T9 Z" \ 12. #设置记录profiling,0=off 1=slow 2=all 2 m) |. o. X4 e' [6 h3 L) L: \6 j
13. #查看profiling 7 n! |0 p& I( [3 a; ]4 e' R+ Q
14. #拷贝数据库 - db.copyDatabase('mail_addr','mail_addr_tmp')
复制代码
* O# M) I. J5 c; E7 ?/ O! d 15. #删除collection
. [; Z. e; I! W& ?! L* h! l( d 16. #删除当前的数据库 2. 增删改 1. #存储嵌套的对象 - db.foo.save({'name':'ysz','address':{'city':'beijing','post':100096},'phone':[138,139]})
复制代码
7 |8 O! K4 A/ F q; A( y& Z* u( Y 2. #存储数组对象 - db.user_addr.save({'Uid':'yushunzhi@sohu.com','Al':['test-1@sohu.com','test-2@sohu.com']})
复制代码
, J$ {& q8 L9 S/ m ?9 K, d/ C 3. #根据query条件修改,如果不存在则插入,允许修改多条记录 - db.foo.update({'yy':5},{'$set':{'xx':2}},upsert=true,multi=true)
复制代码
* l! ^8 P2 k% \: e/ \5 O 4. #删除yy=5的记录 5. #删除所有的记录 ) { v- e; n6 e4 m1 s' i8 y
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()
& j! W" S2 R. t$ s2 E6 G" c6. 高级查询 条件操作符 5 A* W6 ?1 e: g. W( U1 s& z/ e
- $gt : >
; ]1 F% x O! _$ m x8 G' t - $lt : < 8 Y" w" _" c$ _
- $gte: >= # c5 d# }* n2 o( H% S5 I
- $lte: <=
1 `4 a' a ]9 o$ C - $ne : !=、<>
* J1 q0 B, K. _4 t, S$ j3 w3 _) v - $in : in , I. c& F) ~) \! p& s% j! s
- $nin: not in 6 A* y: [$ ^' a1 \: D: ]
- $all: all
5 D$ u: D2 u- a Y - $not: 反匹配(1.3.3及以上版本)
复制代码
+ o3 J/ m1 Y( k# _/ F
* @) {% q: _, h查询 name <> "bruce" and age >= 18 的数据 5 O2 c4 v- c2 z; q& ~/ ~
- db.users.find({name: {$ne: "bruce"}, age: {$gte: 18}});
复制代码
. P* N% r, ]- X# R/ g6 W( s7 ]* H: L1 R/ d& O- T6 b0 z2 d
查询 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的数据 7 b' ] M- X, Z0 u6 V2 N
- db.users.find({creation_date:{$gt:new Date(2010,0,1), $lte:new Date(2010,11,31)});
复制代码 ( Q( P) H8 ?6 y' `
' s7 m: v% R1 T/ v
查询 age in (20,22,24,26) 的数据 m) e1 x( T# H1 I2 L$ R9 [" W
- db.users.find({age: {$in: [20,22,24,26]}});
复制代码
" _! ~( ?" i4 F3 P9 r n5 \ ~4 N, J5 b! F0 X; `. J
查询 age取模10等于0 的数据 8 ?/ S( j4 q4 Q4 k0 s
- db.users.find('this.age % 10 == 0');
复制代码 + W3 }6 i7 y' ?( \+ q6 y' C `9 q) ?
或者 + s6 h2 w X! }8 D4 G6 m
- db.users.find({age : {$mod : [10, 0]}});
复制代码
4 O. |. s5 m9 M. I4 ~9 _, r q* x+ ^+ c( ~4 s
匹配所有 4 C' D0 Y+ g! [: y( h i
- db.users.find({favorite_number : {$all : [6, 8]}});
复制代码
9 a6 W/ k5 y. f% `可以查询出{name: 'David', age: 26, favorite_number: [ 6, 8, 9 ] } * U8 i0 U6 \. W% n0 S
可以不查询出{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] } , T8 L3 g* J( V2 H& X
+ E: I B. [; H6 Z. z; [5 q
查询不匹配name=B*带头的记录
, E; I M- L0 d- db.users.find({name: {$not: /^B.*/}});
复制代码 3 _% P( C- \3 F2 @
查询 age取模10不等于0 的数据 " k3 ]2 j# Q( @6 N; o
- db.users.find({age : {$not: {$mod : [10, 0]}}});
复制代码
7 S% j, g1 x5 C2 _5 G7 z/ h7 @1 Q
+ R$ X. ~; m" l. c3 l+ t) i& E2 b#返回部分字段
* Y; s& @7 l5 t- C选择返回age和_id字段(_id字段总是会被返回)
$ e7 `+ m4 Q$ c- db.users.find({}, {age:1}); , p& Y6 b' _! w% t
- db.users.find({}, {age:3}); ' [4 X2 b$ K# q
- db.users.find({}, {age:true});
{ C& m2 [+ I+ O# I - db.users.find({ name : "bruce" }, {age:1});
复制代码
! ]" Z/ F r0 m0 U( M9 ^0为false, 非0为true
) y; V' H7 f4 x) N* d! p3 C" L& N5 \! w5 p3 z
选择返回age、address和_id字段
8 M1 n+ r U6 o" d: p; j& A# Q- db.users.find({ name : "bruce" }, {age:1, address:1});
复制代码
- d* c, `/ M$ o) t% M8 p5 D* z/ _8 A' w! {+ o& v. }+ f
排除返回age、address和_id字段 8 d5 D' g6 r! M3 L! W
- db.users.find({}, {age:0, address:false});
! a# c( u2 T7 f6 N7 b4 ]- }3 f& c - db.users.find({ name : "bruce" }, {age:0, address:false});
复制代码
% D) i' N9 e& m- ]
3 r# ]; [$ p' C5 w数组元素个数判断
0 ^$ f' b9 B+ T' m' X0 O对于{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }记录
0 y- F* I0 q1 y5 K: C匹配db.users.find({favorite_number: {$size: 3}});
. |1 u) o8 {8 i2 n# p- y- J不匹配db.users.find({favorite_number: {$size: 2}}); ) {: q% b+ W5 I3 G6 i
/ G7 D3 f- _0 S* t# P
$exists判断字段是否存在
% i6 f* t/ M. p7 `$ {查询所有存在name字段的记录 2 @( t2 S2 t/ @7 u
- db.users.find({name: {$exists: true}});
复制代码 , I2 N' u- r4 \+ X
查询所有不存在phone字段的记录
" b; _9 D1 ~ E* k$ U- db.users.find({phone: {$exists: false}});
复制代码 . O$ w' i) g! r A1 @. ^
7 \# H) s1 }; j8 o! F! s
$type判断字段类型 : ~) k$ s5 N# j- g
查询所有name字段是字符类型的 * [ D( y1 W7 P) |0 d% q$ C
- db.users.find({name: {$type: 2}});
9 J( v T+ e4 J
复制代码
# _: I! p9 s" m查询所有age字段是整型的
: ~7 w2 Z6 F% R6 ?& |- db.users.find({age: {$type: 16}}); 1 ?' W# f; q4 j- `& [9 E
复制代码
- U* s c5 c/ O1 U) ~- g对于字符字段,可以使用正则表达式 ' O! j8 M% U8 y3 V4 ~4 U
查询以字母b或者B带头的所有记录 : y$ I1 l) T# r
- db.users.find({name: /^b.*/i}); & n, Q6 d. S Z. s8 p
复制代码
% M* s& |6 a. Q' i o% a5 S$elemMatch(1.3.1及以上版本) . e5 g' f& y: q6 m
为数组的字段中匹配其中某个元素
Y: g5 t$ A: p O4 _, l
# V8 Z4 w0 k& ^: N( LJavascript查询和$where查询 6 U" i( C9 b Q: S% {
查询 age > 18 的记录,以下查询都一样 , w9 b8 U y5 u6 n
- db.users.find({age: {$gt: 18}});
# S8 q" _) ]2 {6 P& q; z3 H0 D - db.users.find({$where: "this.age > 18"});
4 s% L" K* |- Z" W. `- J/ c - db.users.find("this.age > 18"); 1 R! A% ` \9 }6 {0 O$ l2 w
- f = function() {return this.age > 18} db.users.find(f);
复制代码 , Q3 {8 u0 V2 K$ L, T& ?" W
# u4 s& o& E) ? y
排序sort() 6 ^; O7 ~$ o7 K# C! R. @! O9 e3 l
以年龄升序asc
# J& x1 B9 Z$ C& M) h$ w+ C- db.users.find().sort({age: 1});
% }* G6 S' d" K) C! I* i' F' v
复制代码
; p s/ G5 c; J" i* i, Y& P U以年龄降序desc . y/ e+ v* S* \& \! j1 K
- db.users.find().sort({age: -1});
7 r' g# c6 v4 g) t# l
复制代码
; ?+ o" {% N& E" Z- h7 e% D. X) K限制返回记录数量limit() 7 d9 G# U" I4 f8 [& N& o
返回5条记录 # T; N1 t9 M R: A9 r* m
- db.users.find().limit(5);
6 u6 G) ^. h. ]' r0 G, Z
复制代码 ' u& ^. Y9 X8 t
返回3条记录并打印信息 7 x+ Q2 P) d1 N' e1 {+ x
- db.users.find().limit(3).forEach(function(user) {print('my age is ' + user.age)}); 8 P/ q7 l( U& B4 X4 ~
复制代码 ; i& b. F* h$ H; r7 `. s, o
结果 7 o0 m# g$ H- N8 E4 w. x
- my age is 18 $ g" l% o+ E" t" H
- my age is 19
$ x. n6 |1 N: y1 u6 K$ x, D - my age is 20
复制代码
$ a8 |) X; V: K( G1 }3 p# A
5 ^1 W- U1 @1 U4 q. ]" h( v" T限制返回记录的开始点skip() 6 Q, V+ M) m) ]
从第3条记录开始,返回5条记录(limit 3, 5)
9 ^- C0 X# N$ B2 |/ @- db.users.find().skip(3).limit(5);
. ?) R0 T! d9 u. ^. b
复制代码 . [: e/ Y1 y& _2 H6 c
查询记录条数count() 4 j- l2 T# @ _/ u {( L: ~+ p
db.users.find().count();
7 J$ u2 R5 I2 s0 m$ odb.users.find({age:18}).count();
9 B+ T1 j4 |: `" a! y以下返回的不是5,而是user表中所有的记录数量 ) f! w3 c' x% ` I# ~9 C* z
db.users.find().skip(10).limit(5).count(); $ o) E: T. z7 e+ W+ j
如果要返回限制之后的记录数量,要使用count(true)或者count(非0)
0 s8 f! B% I k1 H1 `. O- db.users.find().skip(10).limit(5).count(true);
复制代码 / o _9 O/ t+ V o% Y* `& Z& g
$ \/ i) w8 u: A) t, o* { `
分组group()
; }8 l: h6 ]' N3 v: k假设test表只有以下一条数据 * C" ^( h$ M3 ]/ V0 c: Z" y
- { domain: "www.mongodb.org" 7 S7 K' I* ]1 @0 k5 |
- , invoked_at: {d:"2009-11-03", t:"17:14:05"}
, A0 P# l: R$ }3 i1 H. U3 C - , response_time: 0.05
8 B1 V2 k4 b5 U7 b9 ~3 l - , http_action: "GET /display/DOCS/Aggregation"
% j F: H2 @$ H* s - }
复制代码 ! H2 @& @2 m( A) U6 M8 l
使用group统计test表11月份的数据count:count(*)、total_time:sum(response_time)、avg_time:total_time/count; 1 c# _- z1 p ?% c' f
- db.test.group(
7 U# q9 g7 P; o4 L8 u, }8 R - { cond: {"invoked_at.d": {$gt: "2009-11", $lt: "2009-12"}} ( ?- R$ Z) b! m4 N, q
- , key: {http_action: true} # D5 k% R0 g+ j1 o( N8 {6 J
- , initial: {count: 0, total_time:0} * J, n( u3 T/ \! Q6 [4 r8 I5 H' y
- , reduce: function(doc, out){ out.count++; out.total_time+=doc.response_time } A! h/ ?0 |- S9 y2 K8 u8 g. d6 V
- , finalize: function(out){ out.avg_time = out.total_time / out.count }
; Q: I3 G' ^) H8 L1 B1 r: [ - } );
* p; Q4 G0 Z% V; n( P
; p0 S- ?3 {. v/ I7 z* O- [ 7 H, c, y$ F* B( g% Z% @1 I
- { % _' U; l3 `& D4 i/ V
- "http_action" : "GET /display/DOCS/Aggregation",
7 b. [* d+ e$ y8 U! G: C - "count" : 1, |4 ?! g5 N+ _8 ~# g8 `
- "total_time" : 0.05, . p4 C5 M+ L0 y
- "avg_time" : 0.05
% D: `: b3 ^" M0 ]2 W* z - } 5 _' }. V. q7 y# i( {* T
- ]
复制代码
. L' R9 S. ?- g0 B3 k* Y" O/ P
# D& v8 W' K7 K" D
! _0 w! ]* U. t4 M. cMongoDB 高级聚合查询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吧。 我和同事在测试Mongo时,索引还写了不到一半,他想查询某个字段的最大值,结果找了半天文档也没找到关于max的函数。我也很纳闷这是常规函数啊怎么不提供? 后来经过翻阅资料确定Mongo确实不提供直接的max和min函数。但是可以通过间接的方式[sort 和 limit]实现这个。 要查询最大值我们只需要把结果集按照降序排列,取第一个值就是了。 如我的例子,我想取得集合中年龄最大的人。 - db.person.find({}).sort({"age" : -1}).limit(1)
复制代码
8 F$ s, |" Z5 a2 P% x& |
; m2 H0 A1 S3 X3 j7 K8 V1 C4 A& b. I6 W& S0 ~5 ~! |
相反如果想要年龄最小的人,只需要把sort中改为{“age”:1}就可以了。 当然我们使用了sort,对于小数量的文档是没问题的。当对于大量数据需要给age建立索引,否则这个操作很耗时。 - distinct/ Z/ D% W2 p" n3 A8 ^" T( C
MongoDB的destinct命令是获取特定字段中不同值列表的最简单工具。该命令适用于普通字段,数组字段[myFriends]和数组内嵌文档[fruits]. 如上面的图片,我认为fruits和myFriends字段是不同的。网上很多资料和例子都没说到这个情景,因为我们也业务是fruits这样的模型,我测试了。对于fruits.fruitId他也是可行的。 如上面的表结构,我想统计所有的喜欢的水果。 - db.person.distinct("fruits.fruitId") // 查找对象里引入对象的值,直接加.
复制代码 ; x( a0 F4 w* J8 l9 h3 C
, @& Q4 A' V: p) B: J1 U5 k# e) s 他成功执行了。输出如: - [ "aaa", "bbb", "ccc", "www", "xxx", "yyy", "zzz", "rrr" ]
复制代码
/ ^/ E5 n# _) W( z7 K+ W7 ?" f3 y' d
我想统计集合中共有多少个人[按名字吧] - db.person.distinct("manName")
复制代码 " m3 K! y' w! o4 x: S
1 z* o) e# y/ K 我想统计指定个数的人的共同关注的朋友。 - db.person.distinct("myFriends", {"manName" : {"$in" : ["ZhenQin", "YangYan"]}})
复制代码 . ^) ~: N% k/ m# W+ c; G
( P- i* ^8 H# H _
输出如: - 6 ^- X) }5 ^* y
- [ "234567", "345678", "456789", "987654", "ni", "wo" ]
复制代码 ; a. W6 k* r( `3 U
2 b% r; n* ]. H; T8 `+ b, R
; o6 y: k* \: z0 k! E% Z7 h那么我使用Java呢? 我只是在演示Mongo的命令,用Spring Data Mongo是怎么操作的? Spring Schema: - <beans xmlns="http://www.springframework.org/schema/beans"
3 P4 c' ?. p4 k* Y - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7 ~8 b0 g0 C' [! A3 v" c: ]' S - xmlns:context="http://www.springframework.org/schema/context"
1 F0 Z: k( |2 i2 _5 Q - xmlns:mongo="http://www.springframework.org/schema/data/mongo"0 [) c0 H) s2 b, S0 p2 p+ U' R
- xsi:schemaLocation="http://www.springframework.org/schema/beans
% Q8 h( h$ V3 ~/ }* l0 ~ - http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
7 v6 u% S" E& ^5 F+ T1 W) M) ] - http://www.springframework.org/schema/context
' i# u, l# i3 n+ f' l8 D - http://www.springframework.org/schema/context/spring-context-3.1.xsd$ P" x3 I) e( W; y2 D4 X
- http://www.springframework.org/schema/data/mongo5 j, U. G' a' e3 i8 \" [
- http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd">8 o/ W0 M+ X) Q" Z) y0 V3 k8 M
- ' ^* m% G. q; ~* F$ F
- <context:property-placeholder location="classpath:mongo.properties" />
3 h( b3 K5 d+ {% k3 t/ ~ - " L2 O& u" C% V# P* l
- <!-- Default bean name is 'mongo' -->
1 L, W3 Y$ u4 d% r! S- _2 l2 x - <mongo:mongo id="mongo" host="${mongo.host}" port="${mongo.port}" />& T: E) J( \* x! N4 }. @- u
-
3 p2 |- Y9 S0 g/ C# p V: G - <mongo:db-factory id="mongoDbFactory"4 m0 a, l; n {+ K# q
- mongo-ref="mongo") u' H) z8 v3 a1 X& l8 g Z& T, w
- dbname="mongotest" />
. G2 C$ v& K4 O -
5 L* Y/ l9 T+ k! { - <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
; V8 m, ?3 k9 x& z - <constructor-arg name="mongoDbFactory" ref="mongoDbFactory"/>
3 K! ^- \* E5 ^6 o( h - </bean>' q r* B, ? l6 W& m/ r) N
- </beans>
复制代码 6 I6 g. E% k' c8 j* X8 y( g
/ O( q0 t9 U' }0 O
max和min的测试: - @Test
! A7 C) s4 q; `9 V$ F" N - public void testMaxAndMinAge() throws Exception {7 {, P& K; i0 k G T- Q* G
- Query q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.ASC, "age"))).limit(1);/ f. ?/ E4 i( M' T& c% P
- Person result = mongoTemplate.findOne(q, Person.class);
5 m! u L5 F- ?4 q' q - log.info(result);* }2 S# P5 W1 F3 v& t7 }, `. N4 F+ s
- 9 v" R" j0 C+ j8 \3 A
- q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.DESC, "age"))).limit(1);
+ }; b4 i1 }' s9 y - result = mongoTemplate.findOne(q, Person.class);
+ K5 Z8 ]: R; }. |) H, c - log.info(result);3 U" k1 g; _7 d. c, p: f
- }
复制代码 5 i' W# m8 A& _1 g, K) `% }
6 \# K+ U$ `' \ distinct的测试: - @Test
( z( m' | \ v - public void testDistinct() throws Exception {
3 y9 O7 [9 s: C4 @ - List result = mongoTemplate.getCollection("person").distinct("myFriends");
6 Z0 j% U5 s/ y' y! l8 P) G1 Q - for (Object o : result) {& v) {1 ~ \0 l. M2 R! a9 D* e
- log.info(o);2 f8 m/ l2 l: D- b% u# ?
- }
$ M3 ^( S' W+ \; n4 j0 Q -
+ w# g! t6 m8 W9 ]) s' D - log.info("==================================================================");7 A8 m4 o" d+ g7 C
- Query query = Query.query(Criteria.where("manId").is("123456"));
3 J# Q# E; ^/ o/ ?9 T( K1 ] - result = mongoTemplate.getCollection("person").distinct("myFriends", query.getQueryObject());
# J2 E7 j- ]( @2 k( K - for (Object o : result) {
4 ]2 h! N S3 n - log.info(o);+ j4 ?2 j* f. q" Q. K) a- u& J
- }
& b* Q( S) h' M; V& v -
+ a) w& V6 U: | }: x8 }% u - log.info("==================================================================");
4 T s( l: B5 V- ]$ |2 O" u4 _* \ - result = mongoTemplate.getCollection("person").distinct("fruits.fruitId");/ _" _/ ^* F7 z7 ~4 d2 _5 s
- for (Object o : result) {
2 J% \7 T/ t* j! n - log.info(o);
+ S, H) Z& ~4 N- g - }% h) }& T3 ?: K. |) n) A
- }
复制代码 4 k- F2 A1 ?3 c% V2 z
, w4 G" G' I! H$ R+ m 输出的结果为: - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 234567- A) B* n5 ?8 O6 T: _) v- V
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 345678
$ \" ]( S% b2 I+ @" i0 l! y - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 456789
: R/ u: \. H+ @, m - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 987654
' c! r( z, C& V! L - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] ni
0 G. w7 Z" [6 S, ]/ x - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] wo
: u$ F' A, l$ y6 O% @7 D9 I6 N - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 123456
! V( j2 a C) O2 {2 g - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(75)] ==================================================================. {; r; a( n( X5 {- o
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 234567
& ?/ g, D( N* s3 c - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 345678
& `3 t! ^# Q8 \+ o; Y' O& s X8 e - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 456789
$ F U# M; F6 o" K( f# F - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 987654
& G7 z) r' R' R9 E0 T4 C# h, A - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(82)] ==================================================================
, z I9 G+ Z+ w6 @, x& p. r - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] aaa+ r: ~5 z9 d) A* r
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] bbb
" s6 b p" j/ o0 l - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] ccc; n2 l0 p, C) N$ m6 O
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] www
5 a$ p; U. ~$ A! {5 A% } - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] xxx
, L: M* f# n% R5 R& j - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] yyy
. Y: S8 K4 y; e2 x' S - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] zzz2 _- @: ^, M' N3 ~0 P9 p
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] rrr0 \$ Y- V- U0 W) o& n
- 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
复制代码
( s/ M* U5 L0 |
5 y1 y6 Q5 O3 S$ \5 G# S1 G 这里我要特别说明一下, 当使用了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等信息。
5 f) ^* G8 }' \5 @# b% D# V8 R* T: h/ a% K9 G3 `0 z" x" u
( w! T* y, n% E) ^
|