版本一:& d) }: O5 H% B# Z6 x
M% y& ^: J) }% W$ h6 O7 V, W% D+ h1 ) . 大于,小于,大于或等于,小于或等于- n. ]& Q; [/ e G! V( W
: I5 |$ j& Z7 k, \2 R$gt:大于
$ n" d% h, K) @# _6 A2 T7 x$lt:小于
% w0 m' w3 Y) K7 p/ S$gte:大于或等于) b, ~( Z+ c1 N. W% f
$lte:小于或等于, A$ A$ u O9 u) G. P) S8 H4 n% I
7 J! d+ I6 N2 W( {1 j4 r例子: - db.collection.find({ "field" : { $gt: value } } ); // greater than : field > value
3 q1 D" W6 ~; o J - db.collection.find({ "field" : { $lt: value } } ); // less than : field < value. v% u9 i6 x2 U' f
- db.collection.find({ "field" : { $gte: value } } ); // greater than or equal to : field >= value
* _* J1 X# s9 d - db.collection.find({ "field" : { $lte: value } } ); // less than or equal to : field <= value
复制代码
U8 p0 [9 M* d+ @6 f+ Z如查询j大于3,小于4: - db.things.find({j : {$lt: 3}});
) \# L; k$ v. f5 @( f - db.things.find({j : {$gte: 4}});
复制代码 7 Z+ M7 q3 t1 R, q3 {; Y; D
也可以合并在一条语句内: - db.collection.find({ "field" : { $gt: value1, $lt: value2 } } ); // value1 < field < value
复制代码 + |/ a4 X8 a! B5 R5 Y
, o/ D7 F, Y K. l
: P( C1 Y/ B; o$ d7 D5 _2) 不等于 $ne 例子: - db.things.find( { x : { $ne : 3 } } );
复制代码
! g* a* P5 g( f9 Q3) in 和 not in ($in $nin): c( }$ D% U8 @7 E5 ~7 R+ k E
$ H0 D! r2 b G2 T
语法: - db.collection.find( { "field" : { $in : array } } );
复制代码 j% K3 U0 E# T$ k, ~/ ~
例子: - db.things.find({j:{$in: [2,4,6]}});( V0 a" v" e. R1 e+ l2 ~
- db.things.find({j:{$nin: [2,4,6]}});
复制代码 / s: k% \* W# t/ V! Y
4 v) R& T" G/ I( \* V& X
4) 取模运算$mod) |5 y' T1 Y! r) G5 L0 N* d
" p8 f, k2 K! K3 ~+ L如下面的运算: - db.things.find( "this.a % 10 == 1")
复制代码
, l) q' R6 {1 W) W' C5 a3 O可用$mod代替: - db.things.find( { a : { $mod : [ 10 , 1 ] } } )
复制代码 + V `$ W# g2 M2 `. J& Z9 O6 ^
5 |3 ^2 {" x. U B- C! L
5) $all
9 @7 V1 }* h" c9 ^& f* n8 Z) x5 ~+ X7 z& H4 `: |- g. c- V6 n
$all和$in类似,但是他需要匹配条件内所有的值:
; N+ q3 s4 a1 t! Q
! t6 ^5 Z8 O2 c, L( i: E如有一个对象:
* I* u% }5 _: V
9 x' S. f, A! I! h0 O6 c下面这个条件是可以匹配的: - db.things.find( { a: { $all: [ 2, 3 ] } } );
复制代码 1 |+ d2 @* Y% j( I$ ]3 e" e
但是下面这个条件就不行了: - db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
复制代码
: M+ s- h% I {( q, q4 x" M4 w) P
$ d( _" N0 u7 Z g5 j# s6) $size
, ~- c' L4 q, s8 b# L) w; n4 E# t8 N
$size是匹配数组内的元素数量的,如有一个对象:{a:["foo"]},他只有一个元素:$ s# e3 D* a( A p/ K
& f/ F1 s) C( V0 a) e. {9 u8 L下面的语句就可以匹配:
- db.things.find( { a : { $size: 1 } } );
复制代码
' Y; x% @8 \6 s( |# P) J官网上说不能用来匹配一个范围内的元素,如果想找$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.
4 e# O- C: m8 @3 A! \, V7 T2 D7)$exists $exists用来判断一个元素是否存在: 如: - db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回
1 M! {4 m- w% s0 k l/ @ - db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回
复制代码
5 U( [; b$ _" {$ c: C( U9 e8) $type $type 基于 bson type来匹配一个元素的类型,像是按照类型ID来匹配,不过我没找到bson类型和id对照表。 - db.things.find( { a : { $type : 2 } } ); // matches if a is a string1 ^9 Z* b0 X" c1 e8 j& @
- db.things.find( { a : { $type : 16 } } ); // matches if a is an int
复制代码
. V6 A! K, p- p+ V+ a2 }9)正则表达式
- b: v- k7 s' _3 F* A# t: v2 } Q- A' {. s- x) X1 u
mongo支持正则表达式,如: - db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是区分大小写
复制代码 ( h8 g7 q6 G1 p
10) 查询数据内的值
$ e: Q' B4 a4 [ U
1 f/ b# y. U P3 b) D! d; ~7 e, Y下面的查询是查询colors内red的记录,如果colors元素是一个数据,数据库将遍历这个数组的元素来查询。 - db.things.find( { colors : "red" } );
复制代码
2 t$ y; Q- }# t4 p& k7 D& ^" O l11) $elemMatch6 G% P+ _$ w9 f- x" Q' }: r
1 x, ^8 W% S5 R' b9 k. V, k1 B
如果对象有一个元素是数组,那么$elemMatch可以匹配内数组内的元素: - > t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } )
! M3 m2 i( z; B" g3 i: P - { "_id" : ObjectId("4b5783300334000000000aa9"), : N# ?! i( B1 n* }
- "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]
6 T( U6 `- i3 I) `+ r6 r9 u - }
复制代码
* G$ o7 O" d4 F: T% v, }$elemMatch : { a : 1, b : { $gt : 1 } } 所有的条件都要匹配上才行。注意,上面的语句和下面是不一样的。 > t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )
/ V2 n! }1 v+ O" Q; |$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 }
" y( j3 `( R( u* l, Z3 }& T" O! Q& A: Y/ u( y5 Z
12) 查询嵌入对象的值 - db.postings.find( { "author.name" : "joe" } );
复制代码 5 Z: B" c# _; }- e6 ]
举个例子: - > db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
复制代码
9 u. } R+ k/ O" l* M如果我们要查询 authors name 是Jane的, 我们可以这样: - > db.blog.findOne({"author.name" : "Jane"})
复制代码 : }5 m9 {& R+ S$ `
如果不用点,那就需要用下面这句才能匹配: - db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})
复制代码
/ B- V+ U& Y- K8 e- B下面这句: - db.blog.findOne({"author" : {"name" : "Jane"}})
复制代码 ( l" U: c8 G* q6 g% Z) }
是不能匹配的,因为mongodb对于子对象,他是精确匹配。
/ _3 p( l4 c1 ^13) 元操作符 $not 取反 如: - db.customers.find( { name : { $not : /acme.*corp/i } } );+ ]0 S6 v1 h! V* X" {! N
- db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );
复制代码
" _- [" g% F* F- X7 p6 J- xshell 环境下的操作: 1. 超级用户相关: 1. #进入数据库admin 0 j5 B; o1 G& ^$ E8 C
5 O7 B) N% r' `5 _$ p4 s9 z 2. #增加或修改用户密码 3. #查看用户列表 4. #用户认证 5. #删除用户 6. #查看所有用户 7. #查看所有数据库 8. #查看所有的collection
# @ I$ ^6 c; f3 |5 |8 t$ i. ] 9. #查看各collection的状态 - db.printCollectionStats()
复制代码
; Y% u: z, F9 { 10. #查看主从复制状态 - db.printReplicationInfo()
复制代码 % F' E0 \, P6 f1 n+ J. O
11. #修复数据库 . b$ n- c$ E# x. U8 t- w2 R; o
12. #设置记录profiling,0=off 1=slow 2=all ( ]: k' \6 i# D9 w' q7 I0 E' q
13. #查看profiling 14. #拷贝数据库 - db.copyDatabase('mail_addr','mail_addr_tmp')
复制代码 " M' E+ H# g. `- W8 D6 M$ Q
15. #删除collection 16. #删除当前的数据库 2. 增删改 1. #存储嵌套的对象 - db.foo.save({'name':'ysz','address':{'city':'beijing','post':100096},'phone':[138,139]})
复制代码 ! D1 S8 W K6 `& r2 P: r/ w
2. #存储数组对象 - db.user_addr.save({'Uid':'yushunzhi@sohu.com','Al':['test-1@sohu.com','test-2@sohu.com']})
复制代码 7 r6 o6 }& Q& p8 j- J
3. #根据query条件修改,如果不存在则插入,允许修改多条记录 - db.foo.update({'yy':5},{'$set':{'xx':2}},upsert=true,multi=true)
复制代码
2 p: d% b, l7 T1 Z, t+ R5 i' A5 S 4. #删除yy=5的记录 ! O' ]" W$ @8 F4 @6 l6 ?8 `
5. #删除所有的记录 % C: [) E4 V6 u7 D; g) b2 O) ]
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() - l7 z2 g) [5 O# F# {0 b" n; L
6. 高级查询 条件操作符
0 b8 _! [3 T) Z m8 }- $gt : > 8 |5 F+ e$ K+ f& k; w( O
- $lt : < " y$ V) O5 a$ E& S& `
- $gte: >=
N) t% _1 a3 w: i) f6 _ - $lte: <= % H" Z3 R" r9 H
- $ne : !=、<> $ r# }% Z3 e8 c# B
- $in : in * D3 o0 _0 r/ n! E' p
- $nin: not in 5 d) @. n" e. C5 a. U
- $all: all ; G% r+ I8 h1 o: K
- $not: 反匹配(1.3.3及以上版本)
复制代码
i v4 S1 r! A5 c
2 ^/ \, Y* ?# q2 q3 I+ d查询 name <> "bruce" and age >= 18 的数据 5 O% J; Z. m3 V4 `, j( X
- db.users.find({name: {$ne: "bruce"}, age: {$gte: 18}});
复制代码 " n% D/ D5 u% u$ T4 t
3 \0 x1 ~; T0 h' R' u' p# Y查询 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的数据 U5 K% A4 z# l! Z# S/ M+ p4 ~
- db.users.find({creation_date:{$gt:new Date(2010,0,1), $lte:new Date(2010,11,31)});
复制代码 - Q6 I& B+ `3 g4 [% z
. x0 c( }- W% b" ?查询 age in (20,22,24,26) 的数据
( a7 X, Q+ `5 }3 M. v- db.users.find({age: {$in: [20,22,24,26]}});
复制代码 ; N. j: r% W2 ]
1 V1 \7 b y3 L( o! k查询 age取模10等于0 的数据 ( d' J& D, c# g* `; {
- db.users.find('this.age % 10 == 0');
复制代码
: U- \9 X" v) S或者 5 Y+ \: L3 e# z+ s
- db.users.find({age : {$mod : [10, 0]}});
复制代码
3 `# r1 K, x; x( Y8 P3 ^- C9 T" Y0 ^# \; a- ?
匹配所有
" m8 d# a3 ?7 e- db.users.find({favorite_number : {$all : [6, 8]}});
复制代码
8 q" S$ N! w5 V q- y2 j可以查询出{name: 'David', age: 26, favorite_number: [ 6, 8, 9 ] } . ]7 v3 m/ H9 j$ D0 T/ K$ a% K
可以不查询出{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] } $ [, A' f! N8 j+ p
& C" D4 q; {( h8 h( T查询不匹配name=B*带头的记录 5 z* a% p9 B0 ]" Y0 T5 ^( b
- db.users.find({name: {$not: /^B.*/}});
复制代码
5 H# [" }7 F9 K查询 age取模10不等于0 的数据 ) ~/ C2 ~: b+ i7 ]3 m% S$ ]1 U
- db.users.find({age : {$not: {$mod : [10, 0]}}});
复制代码 ' l \$ g! t [# E g! g1 @
+ f8 a6 [$ P) k, s0 S& E
#返回部分字段 2 T/ Y& d- K8 v9 k6 p% Z% ~! Z
选择返回age和_id字段(_id字段总是会被返回)
/ M2 J" b& M; ?" q- y- db.users.find({}, {age:1});
! ^# x& z0 H+ t' } - db.users.find({}, {age:3});
X# @) q7 D+ G - db.users.find({}, {age:true});
; S# `/ B9 k R( L3 w* r6 A; p - db.users.find({ name : "bruce" }, {age:1});
复制代码 # M, }+ ~6 }& b: c
0为false, 非0为true 5 b0 E: M4 u! d8 k5 ]# P
2 C! v% O$ o7 X0 r8 `& y
选择返回age、address和_id字段
7 t/ ]9 `- {$ t0 d6 {! R) K- db.users.find({ name : "bruce" }, {age:1, address:1});
复制代码
" `% ]1 M/ |. k$ _( M" `* I& p# m; F/ o+ X/ C( s- i7 p
排除返回age、address和_id字段 / K3 a) R0 K. r; T3 A& s
- db.users.find({}, {age:0, address:false});
5 u. C8 {7 p" Z - db.users.find({ name : "bruce" }, {age:0, address:false});
复制代码 9 A& n( e9 H; |- ~0 c1 @# C
0 y4 N! P# W5 ]2 M& g: l数组元素个数判断 3 u& g @" h$ X( F/ b- _) K8 N
对于{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }记录
- q8 b+ h5 f& v% g+ Q7 E匹配db.users.find({favorite_number: {$size: 3}}); 8 ?7 w$ q$ f( k
不匹配db.users.find({favorite_number: {$size: 2}});
( K) t) o: H- \& a8 n9 _% v: X6 r l+ _
$exists判断字段是否存在
) }" `! s I# N# ^, S! i3 J/ J查询所有存在name字段的记录 " g$ \( Q0 ^6 Z- D- x# g
- db.users.find({name: {$exists: true}});
复制代码 ! c3 x! _( ^8 U9 v; x
查询所有不存在phone字段的记录 , ?( R! S. n2 A& t$ W* P5 n
- db.users.find({phone: {$exists: false}});
复制代码 8 h/ P5 x* x5 [
$ f9 n: B% `+ j6 n$ I
$type判断字段类型 : i2 z& W+ V7 J3 [. b. n/ g
查询所有name字段是字符类型的 , Q2 _7 a$ i( n) a" t
- db.users.find({name: {$type: 2}});
! y1 Q1 }& }4 Y% {+ I& G
复制代码 ! x' T; F0 `8 W6 v9 a( A
查询所有age字段是整型的
- s: U- d: w% [5 r) f- db.users.find({age: {$type: 16}}); D- [7 O! \2 m a. q n3 ^
复制代码
' z+ O( F8 G; Q g7 q- A2 m对于字符字段,可以使用正则表达式
: A3 i1 a: `" T& q查询以字母b或者B带头的所有记录
0 b7 A: [4 n- |- db.users.find({name: /^b.*/i});
: L, l2 y8 G2 S1 O. _
复制代码
+ A3 `2 H/ x$ y6 A$elemMatch(1.3.1及以上版本) ( F- `, w0 ^1 j7 L7 c9 P" v7 f
为数组的字段中匹配其中某个元素 ?* \) k1 Z( J; X5 n4 m1 |8 T
( D. s/ b# ~, o9 X. k5 eJavascript查询和$where查询 ! D1 a' c4 Z% a
查询 age > 18 的记录,以下查询都一样 3 a& n% _ d% V+ T' Y
- db.users.find({age: {$gt: 18}});
9 U, p" \5 l+ M9 @' e2 u - db.users.find({$where: "this.age > 18"}); $ Q5 Q t' G3 N; M* S7 Y
- db.users.find("this.age > 18"); ) \% W R) c k0 {
- f = function() {return this.age > 18} db.users.find(f);
复制代码 4 D* {% z% K6 ?# d4 ]. G
+ P+ ^0 a: K; u5 I5 i! _" R
排序sort()
$ I% u7 [/ k4 g5 n. e以年龄升序asc ' ~7 ~1 y# f' x1 w' C
- db.users.find().sort({age: 1});
- n3 H6 y/ B- b5 N
复制代码
( [/ }3 D. y" h3 z" v0 x( K5 e以年龄降序desc : L% _/ @% F7 N
- db.users.find().sort({age: -1}); 4 B' E& C2 U, U/ a
复制代码
, o' w0 c8 J) U4 F/ X) o2 W限制返回记录数量limit() 1 u" m7 u& ], `- x
返回5条记录 6 ?) j# V4 _1 n% X7 W0 w
- db.users.find().limit(5); % m+ h9 P6 ?) U0 M) t2 q
复制代码 4 H( P7 K" F% a+ K6 Q: f
返回3条记录并打印信息 $ G2 J! C) [! B& r6 w) t7 |
- db.users.find().limit(3).forEach(function(user) {print('my age is ' + user.age)}); ( _" O, ]: X/ }) j- G1 M
复制代码
$ C# Y& l4 d. [* q结果
- _# q& o/ W; f5 d W- my age is 18
# w( G; N) \: J6 E - my age is 19
- T, G7 t. s6 R3 l* [$ O - my age is 20
复制代码 6 H- L% ^8 W# c! [" B
( q9 s: a5 v. H, h# M1 U限制返回记录的开始点skip()
2 ^, b0 z* ^6 s6 P) f v从第3条记录开始,返回5条记录(limit 3, 5) ; B9 v' k" Y6 a' X+ n: {2 a2 \
- db.users.find().skip(3).limit(5);
, o9 R1 B% i; c
复制代码
9 D5 j- f; Z- k$ e- n查询记录条数count()
* e" B. f- C% e, N. D( c( zdb.users.find().count();
+ K% ]8 E5 O3 u8 `( i0 U9 hdb.users.find({age:18}).count(); ( l: V6 X1 t/ c: S+ ]8 a0 X. a
以下返回的不是5,而是user表中所有的记录数量 % f9 j4 |4 E- Y7 N& h% m4 w
db.users.find().skip(10).limit(5).count();
4 x9 z$ [& o# y如果要返回限制之后的记录数量,要使用count(true)或者count(非0) - V" O$ q( O5 L% x
- db.users.find().skip(10).limit(5).count(true);
复制代码
4 {# [+ Y, y- o) z, O. V0 o8 M1 Q
分组group()
& Q$ L4 Y d9 \- h4 L. D假设test表只有以下一条数据
: u- p: S4 L$ g, Q, @- v- { domain: "www.mongodb.org" / A( g" v' }! |! Z2 Z9 Z
- , invoked_at: {d:"2009-11-03", t:"17:14:05"}
7 m; s& ]* l I; X - , response_time: 0.05
. c! H: G, v# _, \8 T - , http_action: "GET /display/DOCS/Aggregation"
, E8 d& B, X/ `2 v; o5 } - }
复制代码 8 z: e- N. N) _
使用group统计test表11月份的数据count:count(*)、total_time:sum(response_time)、avg_time:total_time/count; & w) x' b# D" N3 Z
- db.test.group( : B8 ?8 U# H5 x$ {5 T
- { cond: {"invoked_at.d": {$gt: "2009-11", $lt: "2009-12"}} ( q; L/ Q& [4 p& _0 Z
- , key: {http_action: true} 4 L; H- O- ^# Q) L; ~5 P
- , initial: {count: 0, total_time:0} . w0 O2 {- l8 ~$ X; d8 z; Q: }$ h6 z
- , reduce: function(doc, out){ out.count++; out.total_time+=doc.response_time }
: J) }- y# B4 Z& K/ r( E2 B - , finalize: function(out){ out.avg_time = out.total_time / out.count }
4 d4 F$ K) ?; c% M" [0 t5 b - } );
+ A8 p. P/ p1 K4 E2 o - * R% n$ w) H. r) q8 o- R
- [
4 T- x' C9 o& e0 J; \0 O5 b* V - { % P* y1 F5 O6 u1 l" }
- "http_action" : "GET /display/DOCS/Aggregation", 1 w& X* F5 O/ V
- "count" : 1, ( l$ A4 V0 a. K
- "total_time" : 0.05, 2 O0 U( |7 y$ ?" k
- "avg_time" : 0.05
2 o1 R. L# k7 _4 \0 Q - }
% e: s4 Q- x0 x6 D3 N6 O - ]
复制代码
) t5 j: p5 x8 a2 t8 z3 S( Q" X V+ Y, i( b9 b& D- ~- T+ l5 f
- }/ k' ?* [. v' K/ Q% \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 和Min5 P) l7 [5 B1 \0 r: ~/ m& ^
我和同事在测试Mongo时,索引还写了不到一半,他想查询某个字段的最大值,结果找了半天文档也没找到关于max的函数。我也很纳闷这是常规函数啊怎么不提供? 后来经过翻阅资料确定Mongo确实不提供直接的max和min函数。但是可以通过间接的方式[sort 和 limit]实现这个。 要查询最大值我们只需要把结果集按照降序排列,取第一个值就是了。 如我的例子,我想取得集合中年龄最大的人。 - db.person.find({}).sort({"age" : -1}).limit(1)
复制代码
7 d% `9 o/ v8 V* c
4 m# }3 A; h B, h! |
9 o# [% J/ H( I相反如果想要年龄最小的人,只需要把sort中改为{“age”:1}就可以了。 当然我们使用了sort,对于小数量的文档是没问题的。当对于大量数据需要给age建立索引,否则这个操作很耗时。 - distinct
+ q- \0 n, E/ j, q. O
MongoDB的destinct命令是获取特定字段中不同值列表的最简单工具。该命令适用于普通字段,数组字段[myFriends]和数组内嵌文档[fruits]. 如上面的图片,我认为fruits和myFriends字段是不同的。网上很多资料和例子都没说到这个情景,因为我们也业务是fruits这样的模型,我测试了。对于fruits.fruitId他也是可行的。 如上面的表结构,我想统计所有的喜欢的水果。 - db.person.distinct("fruits.fruitId") // 查找对象里引入对象的值,直接加.
复制代码
7 O- E' Q3 |8 ?: _( ]4 |5 w' c: Y% R ^8 c: P* t
他成功执行了。输出如: - [ "aaa", "bbb", "ccc", "www", "xxx", "yyy", "zzz", "rrr" ]
复制代码
$ v+ c$ w, k/ q p: T- w4 z
/ _: U$ L% v. m# k( G+ Q" S' o 我想统计集合中共有多少个人[按名字吧] - db.person.distinct("manName")
复制代码 - }0 \1 _3 y$ m$ A, H8 |
) P$ r+ k& h9 w2 P r* S) W
我想统计指定个数的人的共同关注的朋友。 - db.person.distinct("myFriends", {"manName" : {"$in" : ["ZhenQin", "YangYan"]}})
复制代码 $ c" d$ r, m0 B* F( z$ ]9 E
# M/ \) Z R) P
输出如: -
7 ]" f8 {- D9 z5 [) H5 j - [ "234567", "345678", "456789", "987654", "ni", "wo" ]
复制代码
3 D! H3 _, F& @& E- X. R# u2 O7 ]( U1 n
1 |1 a% b) L- w: K7 y那么我使用Java呢? 我只是在演示Mongo的命令,用Spring Data Mongo是怎么操作的? Spring Schema: - <beans xmlns="http://www.springframework.org/schema/beans"
G' i- M5 f" Z0 R - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- x5 m5 ~+ `/ _! l6 v- a - xmlns:context="http://www.springframework.org/schema/context" |0 ~* {! Z7 ~$ e1 ^3 r5 Q
- xmlns:mongo="http://www.springframework.org/schema/data/mongo"& T+ @' Y8 X0 j7 \8 R" {
- xsi:schemaLocation="http://www.springframework.org/schema/beans& I/ k# W" J: P. p8 q5 B
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
4 J( B$ f% e( ^0 a: X - http://www.springframework.org/schema/context
' {+ p$ A4 \5 C; Z' A# p - http://www.springframework.org/schema/context/spring-context-3.1.xsd/ l) A) J0 q! b; J7 ~7 L$ F
- http://www.springframework.org/schema/data/mongo
! E$ z* y0 K! ~' ?9 U- l - http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd">
! K) H# d) w8 @% c: }3 ?: | -
- x5 d! S8 u5 J5 b( W5 v - <context:property-placeholder location="classpath:mongo.properties" />. Q0 g) R9 A4 [4 L
-
# W, L7 c' V! n$ m& o - <!-- Default bean name is 'mongo' -->" |& q0 D- T, w' y$ c. Y
- <mongo:mongo id="mongo" host="${mongo.host}" port="${mongo.port}" />6 Q" w. O0 i2 J; M& C
-
! l+ }, j; v0 x1 L! V. k - <mongo:db-factory id="mongoDbFactory"8 G. e$ y% w$ y" v
- mongo-ref="mongo") v4 @) l |) H, Q3 ^
- dbname="mongotest" />( c" ^7 N5 n, q# e, V- `/ P! ]
- # b! k2 K0 Y' ^' Y/ B2 k* P
- <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
+ z; j# S& e4 N - <constructor-arg name="mongoDbFactory" ref="mongoDbFactory"/>. N) n% o; g @6 A0 x! r
- </bean>
% r; _: c1 |+ d - </beans>
复制代码 & b/ k1 `6 i* ^1 N6 K, ~+ A; R1 }
2 K+ t# Z2 f: d- V! h* F max和min的测试: - @Test
' V% r0 d) ?9 o: F7 D - public void testMaxAndMinAge() throws Exception {
# a' A3 ^0 J- X) b( c - Query q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.ASC, "age"))).limit(1);
) [. Z; m# e1 _& R - Person result = mongoTemplate.findOne(q, Person.class);$ k) M2 _( X3 A& T/ }, j
- log.info(result);) P1 e* n* }9 H
-
/ e0 ^7 |5 K s7 F1 O& g - q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.DESC, "age"))).limit(1);
. N+ w! i( S6 s! ~$ p& e - result = mongoTemplate.findOne(q, Person.class);
% z1 U( H ~, p N' E - log.info(result);# H+ C5 @; g8 i; y- E
- }
复制代码
! f+ O' r7 N" X
( ^0 \3 o! ^& z& K2 ~" s( h distinct的测试: - @Test
! S7 C4 ?9 f0 I: G5 y - public void testDistinct() throws Exception {
: f6 l9 M v5 j! H% ?3 Q5 o - List result = mongoTemplate.getCollection("person").distinct("myFriends");5 C( c0 {- f) B; O
- for (Object o : result) {) P# \, j, ]6 |1 m0 u
- log.info(o);/ M; {3 S3 D. A: p1 B% V3 h, I
- }
! y8 o3 G% B; [ a - $ |5 |# @4 h/ Q3 |/ @/ \ l! y* N
- log.info("==================================================================");
g) H+ k T) | u" a; D3 u2 [; h - Query query = Query.query(Criteria.where("manId").is("123456"));& A) r9 u, Q! f% O3 j
- result = mongoTemplate.getCollection("person").distinct("myFriends", query.getQueryObject());
9 F# |$ c- Q4 Y+ [- g0 t - for (Object o : result) {' B1 `; S! K+ p2 ?' S& n
- log.info(o);
" F/ a. c4 e4 H' r# G H/ H" }# s - }
, P$ W3 z0 {8 x) e. ?( O -
' w3 H" R5 J4 [( l- |1 Z, J - log.info("==================================================================");7 M2 S3 w9 z3 V d$ v' {) s
- result = mongoTemplate.getCollection("person").distinct("fruits.fruitId");
. Y6 A/ c- W, b! i/ _4 L) O - for (Object o : result) {
; _ l) S/ b3 M9 y* u* x - log.info(o);
$ Q9 n8 _1 g8 w, k - }
% u. I0 P% q- \ - }
复制代码 * ^/ j- P' N- O. e5 O; p& o. |0 P
, z: P, R0 t9 z( M- d" R: o
输出的结果为: - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 234567
8 ^" m* j; i8 \* c2 t - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 345678. S N4 m. n) X4 ^3 Y
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 456789
+ s5 y( u* T' T! W2 }. W( b - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 987654
4 P: D3 n0 T* W" ?( V" w - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] ni& @6 ^/ m& J7 [* i" n, p; e
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] wo$ u3 Z% Y5 ^0 M7 T: j
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 123456% ^0 {6 |( M* N* _
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(75)] ==================================================================
8 Y. ]& c2 H; k" b. I5 w9 _ - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 234567
2 C( {! S- B5 M. l - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 345678
* O1 T8 K" g8 d' o - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 456789* z% c! y; ~7 B6 O+ m% ~3 C
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 987654
. R% c$ X( \: G6 p5 o4 Z - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(82)] ==================================================================
J5 i: R2 B1 H# z4 D" m - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] aaa$ J9 k. N# n9 U" y
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] bbb- M( d; |5 x' ~
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] ccc2 ~4 j! L( F) m/ o5 U; f9 u
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] www+ i! C( q% t0 Q% ?* p6 ?; `3 W
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] xxx7 z% Q, I! n! W; R% n& p% N
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] yyy
! l1 n1 z; k0 Z3 }9 i2 B& ^5 U - 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] zzz! [$ k c; Z$ b4 m( U Q% e; R/ U
- 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] rrr
" W* |1 Z& f5 |8 \2 [* o - 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
复制代码
% o6 U; u/ ?7 [* M# v4 H2 r5 @; V5 ^/ @* m5 @5 p; S
这里我要特别说明一下, 当使用了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等信息。
' w) B+ r) n& Q1 Y( Q2 a0 E2 ^4 D g- C
' B9 v* e/ |$ i2 O3 v+ }1 G0 Z |