您尚未登录,请登录后浏览更多内容! 登录 | 立即注册

QQ登录

只需一步,快速开始

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 12378|回复: 0
打印 上一主题 下一主题

[php学习资料] MongoDB高级查询用法大全

[复制链接]
跳转到指定楼层
楼主
发表于 2019-7-4 17:21:36 | 只看该作者 |只看大图 回帖奖励 |正序浏览 |阅读模式
版本一:( ^# s! ~# z& i8 h- K, C4 L4 \
' _( [+ \) q4 N$ U
1 ) . 大于,小于,大于或等于,小于或等于! t! ?6 j& ~6 k* Q

( |: p/ T8 O' x/ s; d5 w$gt:大于
/ r- h5 i9 S: H. v2 |9 `$ ~$lt:小于8 h! r( g+ u  {% D: X. m8 L
$gte:大于或等于
. {: }& M% P2 k8 l/ n% {; X5 g$lte:小于或等于3 l# t; K8 u3 U6 I: L( Z2 \. K
$ k' n# J9 A- f; e+ ?" K
例子:
  1. db.collection.find({ "field" : { $gt: value } } );   // greater than  : field > value
    - F* {; [2 m( V
  2. db.collection.find({ "field" : { $lt: value } } );   // less than  :  field < value
    / }, L/ x$ A4 }* \
  3. db.collection.find({ "field" : { $gte: value } } );  // greater than or equal to : field >= value& A% O; r4 W& P2 y
  4. db.collection.find({ "field" : { $lte: value } } );  // less than or equal to : field <= value
复制代码

6 ^% D/ |! J* f
如查询j大于3,小于4:
  1. db.things.find({j : {$lt: 3}});
    0 h8 v) T: B8 M' d0 ]5 X  u
  2. db.things.find({j : {$gte: 4}});
复制代码
% _0 R3 ]  U4 }9 v7 s
也可以合并在一条语句内:
  1. db.collection.find({ "field" : { $gt: value1, $lt: value2 } } );    // value1 < field < value
复制代码
2 g" L6 ]7 U; P2 V+ ]

8 s' w; k8 o* i# Z& {3 U. ^+ p. \' O  c
2) 不等于 $ne
例子:
  1. db.things.find( { x : { $ne : 3 } } );
复制代码

9 G& F( r) k, `3 @) q3 T8 V2 s
3) in 和 not in ($in $nin)% m' z4 h8 S# X5 u
, ?  g  W: M& c" O3 A1 y3 s! z6 R
语法:
  1. db.collection.find( { "field" : { $in : array } } );
复制代码
9 j# i' F" R0 L4 v
例子:
  1. db.things.find({j:{$in: [2,4,6]}});- Y) l, d* b7 ~7 I5 D# M
  2. db.things.find({j:{$nin: [2,4,6]}});
复制代码

# m. U- ^( L+ P# H8 ?5 e+ ]
4 K! A1 X3 W! i/ I$ D9 E' L
4) 取模运算$mod. Q  S3 L3 R3 f& I% P* j0 H+ |* F

) k  e8 O8 [* ]- Z& c) c% G如下面的运算:
  1. db.things.find( "this.a % 10 == 1")
复制代码
# W( c* y- e- ^  z# m; c9 X+ x2 K
可用$mod代替:
  1. db.things.find( { a : { $mod : [ 10 , 1 ] } } )
复制代码
' V7 c. d' A. s) J% q$ C; h3 o
2 _6 P% b9 s3 a+ X; }, B4 z; |4 ?
5)  $all! i/ Z" U' |: i5 P1 S

3 F, @- j. o' h( ]* f) G) f2 w+ o6 I$all和$in类似,但是他需要匹配条件内所有的值:
; S/ u6 F0 y/ h& c3 d6 d. ~: }: `. c
如有一个对象:: ^  R. M' i- t
  1. { a: [ 1, 2, 3 ] }
复制代码

. j6 Z+ q. K' N; G
下面这个条件是可以匹配的:
  1. db.things.find( { a: { $all: [ 2, 3 ] } } );
复制代码
0 y8 b% ^3 K+ S# a+ ^5 r1 b5 ?
但是下面这个条件就不行了:
  1. db.things.find( { a: { $all: [ 2, 3, 4 ] } } );
复制代码
! I4 Q8 P' J2 n0 H$ N* t8 o% J
$ R) N% _9 x. j6 m" `' N; N- y. L
6)  $size
9 L& Q* x4 I0 i- k; L
. @" x  ~* c/ s0 K2 f$size是匹配数组内的元素数量的,如有一个对象:{a:["foo"]},他只有一个元素:5 h5 c4 w) j% {2 U5 |8 ~8 R
/ V, I$ R/ m& h$ f: _
下面的语句就可以匹配:
  1. db.things.find( { a : { $size: 1 } } );
复制代码

  `& W8 R+ W. y' Z5 O  g2 `
官网上说不能用来匹配一个范围内的元素,如果想找$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.
! j; `  k' d7 S6 f; z0 @
7)$exists
$exists用来判断一个元素是否存在:
如:
  1. db.things.find( { a : { $exists : true } } ); // 如果存在元素a,就返回$ U, F' |7 Z9 j4 O& j* f  W
  2. db.things.find( { a : { $exists : false } } ); // 如果不存在元素a,就返回
复制代码
" [8 T; [) l" n) }& C" m
8)  $type
$type 基于 bson type来匹配一个元素的类型,像是按照类型ID来匹配,不过我没找到bson类型和id对照表。
  1. db.things.find( { a : { $type : 2 } } ); // matches if a is a string
    , `$ l0 A8 ~0 B) G; Z. O, r
  2. db.things.find( { a : { $type : 16 } } ); // matches if a is an int
复制代码
; U9 U' u; ^+ b2 O2 h, m
9)正则表达式# L$ F: R9 O: l. z( \2 p
# `2 d! N, L  |9 I
mongo支持正则表达式,如:
  1. db.customers.find( { name : /acme.*corp/i } ); // 后面的i的意思是区分大小写
复制代码

* m+ H9 V' m2 ~
10)  查询数据内的值
& q% Q- {' l! K
, u# r% y0 ?1 ?( M5 o0 P. |  D下面的查询是查询colors内red的记录,如果colors元素是一个数据,数据库将遍历这个数组的元素来查询。
  1. db.things.find( { colors : "red" } );
复制代码

. v# j2 m6 H4 t9 `' a1 @$ l2 ?
11) $elemMatch9 [: N( L5 n8 z. O

. u1 q) H2 [0 t' t& X+ J+ V如果对象有一个元素是数组,那么$elemMatch可以匹配内数组内的元素:
  1. > t.find( { x : { $elemMatch : { a : 1, b : { $gt : 1 } } } } )
    8 B; ]% Y* b2 h* u7 M( P
  2. { "_id" : ObjectId("4b5783300334000000000aa9"),  
    ) E! @+ S+ Z1 M6 w! N8 u# }- p
  3. "x" : [ { "a" : 1, "b" : 3 }, 7, { "b" : 99 }, { "a" : 11 } ]! Z$ y9 N4 @8 r/ q, H, l$ t) Z! G  S
  4. }
复制代码

' S4 F% u% j1 v6 {6 r* c# B7 {$elemMatch : { a : 1, b : { $gt : 1 } } 所有的条件都要匹配上才行。
注意,上面的语句和下面是不一样的。
> t.find( { "x.a" : 1, "x.b" : { $gt : 1 } } )
& _9 \$ {9 ]' N3 o; E+ C" @
$elemMatch是匹配{ "a" : 1, "b" : 3 },而后面一句是匹配{ "b" : 99 }, { "a" : 11 } 8 w1 |- G$ W+ |

3 Q& J& M6 U1 ?12)  查询嵌入对象的值
  1. db.postings.find( { "author.name" : "joe" } );
复制代码
  }5 H- N7 R0 d! z2 W
注意用法是author.name,用一个点就行了。更详细的可以看这个链接: dot notation
举个例子:
  1. > db.blog.save({ title : "My First Post", author: {name : "Jane", id : 1}})
复制代码
9 E8 }5 v5 G4 o  P% y
如果我们要查询 authors name 是Jane的, 我们可以这样:
  1. > db.blog.findOne({"author.name" : "Jane"})
复制代码

* \- p7 W1 o+ d8 \+ O! ~8 ?5 _0 d2 X) |
如果不用点,那就需要用下面这句才能匹配:
  1. db.blog.findOne({"author" : {"name" : "Jane", "id" : 1}})
复制代码

0 b. q! [- [8 g5 u( B; Y
下面这句:
  1. db.blog.findOne({"author" : {"name" : "Jane"}})
复制代码
% J# a8 x5 U  c8 u
是不能匹配的,因为mongodb对于子对象,他是精确匹配。

; [2 @: n6 X% w) U
13) 元操作符 $not 取反
如:
  1. db.customers.find( { name : { $not : /acme.*corp/i } } );
    7 H# Y8 A) s( x/ K
  2. db.things.find( { a : { $not : { $mod : [ 10 , 1 ] } } } );
复制代码

, z' D. {' r- j; H5 T
mongodb还有很多函数可以用,如排序,统计等,请参考原文。
) a  g! G. H; B9 a$ u+ Y, G: ?' \3 y( u: j; d  z3 A. T5 b
mongodb目前没有或(or)操作符,只能用变通的办法代替,可以参考下面的链接:
& y7 y! R, @( L
1 ]9 ^3 @8 x$ h) K4 w) whttp://www.mongodb.org/display/DOCS/OR+operations+in+query+expressions8 c" [- s4 d9 P- f

1 a9 P/ U. q# T1 b' w版本二:6 i. ]8 q/ V$ I% A2 F
shell 环境下的操作:
   1.  超级用户相关:
         1. #进入数据库admin
# E+ \  W9 Q9 `% m% i' O
  1. use admin
复制代码

5 W' x6 q! e. B( [5 D: \0 g
         2. #增加或修改用户密码
  1.           db.addUser('name','pwd')
复制代码
& N6 b0 T0 W# x3 c; T0 O
         3. #查看用户列表
  1.           db.system.users.find()
复制代码

3 n% x1 }) k6 ?4 G1 [* L( i7 H1 m
         4. #用户认证
  1.           db.auth('name','pwd')
复制代码
# }; ^" r6 T5 C8 l1 T
         5. #删除用户
  1.           db.removeUser('name')
复制代码
, R5 d6 u+ }- D0 `0 E
         6. #查看所有用户
  1.           show users
复制代码

9 d+ x8 X6 j( p! A# d; i6 P
         7. #查看所有数据库
  1.           show dbs
复制代码

, @% _# z! o1 W/ `9 H# K
         8. #查看所有的collection
  1.           show collections
复制代码

1 g; V+ {! \7 }
         9. #查看各collection的状态
  1.           db.printCollectionStats()
复制代码
( V  e9 `! U! Z6 \  ?' s
        10. #查看主从复制状态
  1.           db.printReplicationInfo()
复制代码
( k" x" _; W9 l
        11. #修复数据库
  1.           db.repairDatabase()
复制代码

# e  X8 i  i( e) O' E6 f
        12. #设置记录profiling,0=off 1=slow 2=all
  1.           db.setProfilingLevel(1)
复制代码

) {: J! U$ T. h+ U% a  V, B* K( k/ e
        13. #查看profiling
  1.           show profile
复制代码

* e) Z) C2 B! S4 [+ D+ j
        14. #拷贝数据库
  1.           db.copyDatabase('mail_addr','mail_addr_tmp')
复制代码
: i9 U6 t$ Q3 P; l% L0 }
        15. #删除collection
  1.           db.mail_addr.drop()
复制代码
- O: F$ v1 S% J7 g7 [# o
        16. #删除当前的数据库
  1.           db.dropDatabase()
复制代码
, Q* w6 M2 o/ m7 O! ^( M$ U
   2. 增删改
         1. #存储嵌套的对象
  1.              db.foo.save({'name':'ysz','address':{'city':'beijing','post':100096},'phone':[138,139]})
复制代码

; h% B( Z3 S% o) G, ^
         2. #存储数组对象
  1.              db.user_addr.save({'Uid':'yushunzhi@sohu.com','Al':['test-1@sohu.com','test-2@sohu.com']})
复制代码
( e7 t+ _5 u+ P8 {, ]" R  }- g$ c
         3. #根据query条件修改,如果不存在则插入,允许修改多条记录
  1.             db.foo.update({'yy':5},{'$set':{'xx':2}},upsert=true,multi=true)
复制代码

' d4 `2 l) O6 \5 L7 j
         4. #删除yy=5的记录
  1.             db.foo.remove({'yy':5})
复制代码
# m4 S1 L% ~/ S
         5. #删除所有的记录
  1.             db.foo.remove()
复制代码

5 R* z" N1 ?; y, `! X
   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()

* B  Y$ E9 c) s/ E' V5 W
6.  高级查询
条件操作符 ' Z  _! [7 M. r3 c
  1. $gt : >
    8 _" P; U1 x8 m* V( y6 i) q: l
  2. $lt : < : k8 b5 K7 z- S! e5 L; r
  3. $gte: >=
    * p* ^1 [! H3 `# t: u
  4. $lte: <= * m8 f. J1 A3 @
  5. $ne : !=、<> # a# g/ G; |9 A2 y$ V: N
  6. $in : in " A! s9 X) B$ C
  7. $nin: not in
    6 g* S6 }/ h: H
  8. $all: all
    # g6 F. W7 G7 P$ G2 {+ l
  9. $not: 反匹配(1.3.3及以上版本)
复制代码

. S& X* d7 m4 O/ q' U- {! j  [8 C9 t% X  D
查询 name <> "bruce" and age >= 18 的数据
3 k) {1 ]& W: a8 w: A
  1. db.users.find({name: {$ne: "bruce"}, age: {$gte: 18}});
复制代码

  Y3 @2 V) j8 X: x6 s" d5 d- j) ]# I/ w8 \! j, ]! c
查询 creation_date > '2010-01-01' and creation_date <= '2010-12-31' 的数据
; Q7 k- c4 e8 h
  1. db.users.find({creation_date:{$gt:new Date(2010,0,1), $lte:new Date(2010,11,31)});
复制代码
* j2 \  d% `/ K# P

  C8 G8 A% h6 m查询 age in (20,22,24,26) 的数据
* g3 \' _4 b  s# W5 h
  1. db.users.find({age: {$in: [20,22,24,26]}});
复制代码
) Y$ G' n; L& U. O/ W6 [. p

8 a$ R; d+ F; V) S/ N6 n6 e) S0 B查询 age取模10等于0 的数据
% T# x* Q$ k% C" i5 w1 S6 K
  1. db.users.find('this.age % 10 == 0');
复制代码

. Q5 {/ `( E; q! t或者
% S5 \1 v* O4 {! i  k
  1. db.users.find({age : {$mod : [10, 0]}});
复制代码

) g+ t1 [7 a1 b. g% O+ A9 e! q9 v$ X) ^
匹配所有
0 f5 D6 X, Q' t) `0 `3 V
  1. db.users.find({favorite_number : {$all : [6, 8]}});
复制代码
2 @9 F( b1 z8 H
可以查询出{name: 'David', age: 26, favorite_number: [ 6, 8, 9 ] }
' `5 Q3 ]6 y3 Y6 x( Q; U( o可以不查询出{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }
7 x4 J+ b" y. T7 n+ V, _, f" }) y9 l5 b
查询不匹配name=B*带头的记录 ' d( Y  c8 `! R8 q) c. i$ D" {- b
  1. db.users.find({name: {$not: /^B.*/}});
复制代码
" E1 p, I. U8 V  j- m* A$ c8 u
查询 age取模10不等于0 的数据 . B5 a5 [6 C) C' a
  1. db.users.find({age : {$not: {$mod : [10, 0]}}});
复制代码
( B- v( M' n8 l, @9 u
0 c. Y* }4 V$ J( a1 T
#返回部分字段
6 \' g2 e, F0 l' l7 p5 b选择返回age和_id字段(_id字段总是会被返回) 5 C7 h0 R' ]( \, V+ w1 L
  1. db.users.find({}, {age:1});
    # W# q- \7 p7 @/ ^  Y) C4 e) V& p
  2. db.users.find({}, {age:3});
    4 _) Z5 K. u. \/ \* }
  3. db.users.find({}, {age:true});
    # _; S; f9 W3 ^
  4. db.users.find({ name : "bruce" }, {age:1});
复制代码

: ]/ h8 k& F7 ]. B4 n0为false, 非0为true ! S/ |6 l6 V- n4 w
/ B: j# C& ?- L/ b1 k2 O
选择返回age、address和_id字段 5 Z& e* n7 X0 E+ Y& {; G# n: n( F. E, |
  1. db.users.find({ name : "bruce" }, {age:1, address:1});
复制代码
0 @, n% O  V6 Y: d3 N  H
, j- }" b: U& w! U' q
排除返回age、address和_id字段
8 x, k: z! a: B3 f+ E7 I
  1. db.users.find({}, {age:0, address:false});
    8 v7 ^; z+ i0 I  _( r
  2. db.users.find({ name : "bruce" }, {age:0, address:false});
复制代码

+ G8 C! P4 E, {# y0 `( \: \9 I0 E1 k. _
数组元素个数判断 + ~1 d8 \9 z% p) }6 ]
对于{name: 'David', age: 26, favorite_number: [ 6, 7, 9 ] }记录
5 g  t2 m3 C: B匹配db.users.find({favorite_number: {$size: 3}}); . U+ e; u2 S# b5 t$ f
不匹配db.users.find({favorite_number: {$size: 2}});
, [* J& I, B3 z3 e7 a0 Q* B! W
; c( |# \# ]( f1 e; I, B$ }$exists判断字段是否存在 6 Q: c. P- ]. b/ k5 [! t2 L
查询所有存在name字段的记录
: e( c) o$ R$ Y. C9 p! ?
  1. db.users.find({name: {$exists: true}});
复制代码

3 r1 B* t/ I& P% z# i查询所有不存在phone字段的记录
2 ^; o% o4 d' J" Y4 g+ w3 J, B1 ?
  1. db.users.find({phone: {$exists: false}});
复制代码

+ [% `1 f4 d* @2 o7 n/ @9 q+ @2 F; p1 J' \2 [' X
$type判断字段类型
8 o, C/ ?$ p5 t2 G" v* h& l查询所有name字段是字符类型的
7 [2 P* B( z% }' o
  1. db.users.find({name: {$type: 2}});
      `; n- V8 v8 |1 }
复制代码

+ `/ v( k+ R& m0 w) d5 N) C8 a3 Z. S0 P查询所有age字段是整型的
5 x" I! I8 [, r  R9 X" i6 e) H  X
  1. db.users.find({age: {$type: 16}}); ; U9 C& F2 w) [" E4 O0 s
复制代码

' |  J8 B6 z8 N) K# j对于字符字段,可以使用正则表达式
' O6 |- }" e# W5 h$ U查询以字母b或者B带头的所有记录 % N7 D* e4 q0 T+ W# D5 X( z
  1. db.users.find({name: /^b.*/i});
    6 L2 @3 x+ L2 v0 ]. _  d; ]
复制代码
. M+ }' `# d) n5 W* W  S- q7 f0 N$ |
$elemMatch(1.3.1及以上版本)
6 M9 N: G+ u9 D8 P; Q6 O4 F; D+ w0 e为数组的字段中匹配其中某个元素 8 C0 ^% F9 p# r6 E( ?9 A
2 k& t0 `) i; s* Z& C3 u) e) ~
Javascript查询和$where查询 % ?  T. u8 g! U
查询 age > 18 的记录,以下查询都一样 & U3 w' z. ?0 Z7 W  q6 `
  1. db.users.find({age: {$gt: 18}}); 1 b2 z: M  q5 l+ g5 l) v7 A( p
  2. db.users.find({$where: "this.age > 18"}); ) ?' A# j6 V& ~$ }5 E
  3. db.users.find("this.age > 18"); 9 F: N! u3 W/ ]# i5 r- r+ B, _5 z
  4. f = function() {return this.age > 18} db.users.find(f);
复制代码
- b7 X+ Z  L7 E% N* q
% ]: ^, }; j5 X: \# C
排序sort() 4 @) W' v6 D/ c% Y- L  t0 p
以年龄升序asc / j; F5 N; N: a0 I; ?
  1. db.users.find().sort({age: 1});
    ! U- p4 ?+ S7 F6 |5 w. B; A
复制代码
0 @& S9 @. F/ q, J% i
以年龄降序desc
5 P9 o+ O0 A' J( }
  1. db.users.find().sort({age: -1}); # I' G) q7 b8 u$ Y6 `# |
复制代码

! A0 ~. i0 V& \4 P限制返回记录数量limit()
2 ?& S; z" ~: W& `' {" U# y返回5条记录 4 O* ]' t9 b4 V! A9 W
  1. db.users.find().limit(5);
    ; X* O# r6 a! ]7 l
复制代码
& d9 }. B) f! h- {5 U
返回3条记录并打印信息 * Q7 G; `4 i2 ?* \0 Q! l3 j
  1. db.users.find().limit(3).forEach(function(user) {print('my age is ' + user.age)});
    - E. `* I' p  ~+ v6 G6 c
复制代码
; M1 F$ p  g2 w
结果
1 Y5 @5 s' O- ?& x3 f! P
  1. my age is 18
    # V) w0 h/ ^* ?# U$ t$ K- w2 z
  2. my age is 19
    9 i. L/ X9 K7 `4 _* k" {5 p
  3. my age is 20
复制代码
8 }  x, ?  T0 A% Y: U
# ]% T+ x, E+ v) Z, e0 V
限制返回记录的开始点skip()
' S' m; }  U/ p/ H, J5 }  [从第3条记录开始,返回5条记录(limit 3, 5) 2 C; s0 R& G9 |% P- J
  1. db.users.find().skip(3).limit(5); 0 H- k# R% w$ m, Y
复制代码

; i5 C4 i( C  c查询记录条数count()
* q  ~. a$ o- [$ H# Udb.users.find().count();
, U: |8 _& e% ]& @2 {db.users.find({age:18}).count(); ( ^; {" N/ }4 w8 J% ?# ]
以下返回的不是5,而是user表中所有的记录数量 . \  d) r% i. i. d9 W
db.users.find().skip(10).limit(5).count();
& A+ B. j3 }* D$ d( k1 s如果要返回限制之后的记录数量,要使用count(true)或者count(非0) 0 [8 O# ]; _0 n/ E
  1. db.users.find().skip(10).limit(5).count(true);
复制代码

3 i8 I; U8 c; r9 t" @7 \) H  ~: f! Q1 B6 R
分组group() * ^$ @8 k! `, n% g0 y7 m
假设test表只有以下一条数据
2 O/ c( e; r8 l. d
  1. { domain: "www.mongodb.org"
    ! N2 M; X9 B$ a; w; t" g
  2. , invoked_at: {d:"2009-11-03", t:"17:14:05"} & ^8 R4 B1 k+ z" @. `" @* O
  3. , response_time: 0.05
    ) f+ Z1 A1 @, X0 d; x- ]  k
  4. , http_action: "GET /display/DOCS/Aggregation" : O) w0 l! `) C% i0 g8 h4 a
  5. }
复制代码
2 g3 ?$ H) o- t( d# ?6 m  U1 I
使用group统计test表11月份的数据count:count(*)、total_time:sum(response_time)、avg_time:total_time/count;
$ l: w- f6 ^8 d
  1. db.test.group( 7 D. z7 E# W6 r  W, I& g! a6 M
  2. { cond: {"invoked_at.d": {$gt: "2009-11", $lt: "2009-12"}}
    6 [9 E! r" E4 c9 H" B
  3. , key: {http_action: true}
    & H/ k  o+ D( [" G# |
  4. , initial: {count: 0, total_time:0}
    ) S7 q% N+ u. @
  5. , reduce: function(doc, out){ out.count++; out.total_time+=doc.response_time }
    & \7 j+ o3 Y9 O: b' c
  6. , finalize: function(out){ out.avg_time = out.total_time / out.count } 2 B5 R3 U' P) m$ ^: @$ h1 ^/ n- w
  7. } ); 0 b9 M! H- V8 `: g& E1 w

  8. ; D+ y8 E# H' l
  9. [ - `' d: B8 |5 A. w5 E. [; E
  10. { . p6 U7 o/ e  f2 q4 T" ]) a/ v
  11. "http_action" : "GET /display/DOCS/Aggregation", * g( @; ]5 D+ c$ t) Q5 O2 r
  12. "count" : 1,   p/ g+ X8 T, O9 j$ Y5 b2 A6 L+ K
  13. "total_time" : 0.05, - [4 Z# k1 n& C2 L
  14. "avg_time" : 0.05 / g  U0 r% m6 a, O
  15. } $ X1 q4 \/ T4 Z" T
  16. ]
复制代码

3 v$ `( [8 t, W' @: V4 k; }0 \5 W* {8 c; x# O% _2 b  C1 Q% Z

2 l* o' S1 B, O: h% eMongoDB 高级聚合查询
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
    # v: m+ }& P4 c2 I1 v) v
我和同事在测试Mongo时,索引还写了不到一半,他想查询某个字段的最大值,结果找了半天文档也没找到关于max的函数。我也很纳闷这是常规函数啊怎么不提供? 后来经过翻阅资料确定Mongo确实不提供直接的max和min函数。但是可以通过间接的方式[sort 和 limit]实现这个。
要查询最大值我们只需要把结果集按照降序排列,取第一个值就是了。
如我的例子,我想取得集合中年龄最大的人。
  1. db.person.find({}).sort({"age" : -1}).limit(1)
复制代码

6 |0 q, A; [, J. U8 d' E. E6 e6 C/ G4 I$ P$ N- t
* L' v8 [& O5 N0 J
相反如果想要年龄最小的人,只需要把sort中改为{“age”:1}就可以了。
当然我们使用了sort,对于小数量的文档是没问题的。当对于大量数据需要给age建立索引,否则这个操作很耗时。
  • distinct
    5 h" R9 k' _6 v! J
MongoDB的destinct命令是获取特定字段中不同值列表的最简单工具。该命令适用于普通字段,数组字段[myFriends]和数组内嵌文档[fruits].
如上面的图片,我认为fruits和myFriends字段是不同的。网上很多资料和例子都没说到这个情景,因为我们也业务是fruits这样的模型,我测试了。对于fruits.fruitId他也是可行的。
如上面的表结构,我想统计所有的喜欢的水果。
  1. db.person.distinct("fruits.fruitId") // 查找对象里引入对象的值,直接加.
复制代码
2 M/ A, }0 n/ E# ^
9 m. A0 _6 G  ]9 @) x
他成功执行了。输出如:
  1. [ "aaa", "bbb", "ccc", "www", "xxx", "yyy", "zzz", "rrr" ]
复制代码

4 u+ D* M9 \9 @# Z) W$ ^2 s6 f' _: j  m$ V
我想统计集合中共有多少个人[按名字吧]
  1. db.person.distinct("manName")
复制代码
' D9 ~* B" C4 K8 K" m8 e
3 t9 f. Y' x1 u1 O' j% I
我想统计指定个数的人的共同关注的朋友。
  1. db.person.distinct("myFriends", {"manName" : {"$in" : ["ZhenQin", "YangYan"]}})
复制代码

+ C; u/ ^4 H% U7 g/ Y9 Y9 W2 C8 |# p; Z: S' ^6 b+ q$ w
输出如:
  1.         6 w( i8 |( u1 ]; ~7 N
  2. [ "234567", "345678", "456789", "987654", "ni", "wo" ]
复制代码

+ _# R( j& L9 N, S7 G$ [+ ]8 Z; z8 w$ p
3 z6 \2 l. Z8 ~0 p, d
那么我使用Java呢? 我只是在演示Mongo的命令,用Spring Data Mongo是怎么操作的?
Spring Schema:
  1. <beans xmlns="http://www.springframework.org/schema/beans"
    9 J2 T+ G7 T! Z
  2.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    0 w' J0 u. H; S) M" W" e) e
  3.        xmlns:context="http://www.springframework.org/schema/context"
    8 M2 R( _- M; q* o
  4.        xmlns:mongo="http://www.springframework.org/schema/data/mongo"9 t/ [& C3 ?& m# x$ C# k
  5.        xsi:schemaLocation="http://www.springframework.org/schema/beans
    1 P# M5 d3 i  W* O
  6.           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd( W) G0 K1 i- A2 o5 y  X8 V. E8 _/ |
  7.           http://www.springframework.org/schema/context
    2 o) c3 o* l. S
  8.           http://www.springframework.org/schema/context/spring-context-3.1.xsd
    , j6 Q" g" O9 Y
  9.           http://www.springframework.org/schema/data/mongo9 |! L; T1 l6 Q! p
  10.           http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd">
    ) P3 \$ e9 l0 Y( F1 D* Z- C
  11. % D2 M: U$ D; p7 j
  12.     <context:property-placeholder location="classpath:mongo.properties" />* W' n4 V. ^4 v9 u2 \

  13. - g/ X: i) s# Y) N
  14.     <!-- Default bean name is 'mongo' -->
      Y3 ^! b3 `! x+ e: I, @
  15.     <mongo:mongo id="mongo" host="${mongo.host}" port="${mongo.port}" />" ~+ @4 O1 t: m: T2 m7 Q0 O
  16. + s: @* [. z8 d3 @" L* E) `
  17.     <mongo:db-factory id="mongoDbFactory"+ Y1 b. f" O3 E, V
  18.                   mongo-ref="mongo"
    9 l9 U5 ?# a# K8 D& f$ H# N; i
  19.                   dbname="mongotest" />4 E+ T. ]: V  Q" L6 {$ m
  20. 9 e' M. u( T9 [6 y) u# E, ?
  21.     <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
    ! N, Q, w8 {! Z5 d- l7 C$ I7 G' O
  22.         <constructor-arg name="mongoDbFactory" ref="mongoDbFactory"/>
    8 @0 |$ L! [0 ]$ x% ?
  23.     </bean>
    1 ?3 m6 o  L, _* t5 n7 Y0 v
  24. </beans>
复制代码

' D! N1 V& j" L$ T) @# _
; U5 ]% `5 x0 q. j; S. C) |' {$ o
maxmin的测试
  1. @Test, P4 T, x) ^' `# i1 B# Y
  2.     public void testMaxAndMinAge() throws Exception {: d2 i6 Q+ |/ W/ B! y% T( i4 J! q. y5 l
  3.         Query q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.ASC, "age"))).limit(1);
    ' {  [( e8 x# Y
  4.         Person result = mongoTemplate.findOne(q, Person.class);
    7 G6 |0 D6 C/ e
  5.         log.info(result);, {" `. |3 y  I5 q+ |0 Y' J

  6. 6 F8 Q# I; M& I+ f1 G: V" @
  7.         q = new BasicQuery("{}").with(new Sort(new Sort.Order(Sort.Direction.DESC, "age"))).limit(1);
    6 ?3 U! L5 t# U, H
  8.         result = mongoTemplate.findOne(q, Person.class);
    / U0 S& B' ~4 [
  9.         log.info(result);
    : ?2 l; o3 b$ k4 }4 _9 k' c9 _. @
  10.     }
复制代码

7 Q5 u' j, r+ [: Q. y) R5 E1 `+ C" z: q" q0 `5 R4 |
distinct的测试:
  1. @Test
    # m# y; U# ~3 g- n& l, T
  2.     public void testDistinct() throws Exception {! s/ H0 r' R) d+ I
  3.         List result = mongoTemplate.getCollection("person").distinct("myFriends");- `; a. s! V/ g/ d% d
  4.         for (Object o : result) {/ T* V8 v: O" q4 m
  5.             log.info(o);
    * t0 O1 s) N3 i3 L, G9 }' c
  6.         }/ f3 L; Q; ]9 m3 [0 J) j

  7. ) y' p' ?8 |& [  [" Z7 t
  8.         log.info("==================================================================");
    0 m, a; H& r' q
  9.         Query query = Query.query(Criteria.where("manId").is("123456"));
    % H. l) b/ G, |( Y- d
  10.         result = mongoTemplate.getCollection("person").distinct("myFriends", query.getQueryObject());: m& G) `) F8 n% i& |  Q
  11.         for (Object o : result) {
    % `! q0 Z9 f' i$ Z- u( i/ s; c' D
  12.             log.info(o);4 l1 {# x' Q: {+ P- P0 C9 a/ h/ n: B
  13.         }4 W! Y0 t" `6 ^# m$ w$ o

  14. ' Y$ a1 y+ o( T3 k
  15.         log.info("==================================================================");
    " t. t, R" C' q5 T9 M( |
  16.         result = mongoTemplate.getCollection("person").distinct("fruits.fruitId");
    1 J- j6 L( P7 }9 H8 u2 t( g6 l
  17.         for (Object o : result) {; y1 l- w. J; Q* j: w+ @
  18.             log.info(o);+ f: T+ X  O+ q/ c5 s, \
  19.         }
      Q* ^3 L! M/ c0 M0 I
  20.     }
复制代码

. c% g6 h* U, P* V5 {
. d# V! o1 e* Z( ]# j" g$ M. r
输出的结果为:
  1. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 234567) O" l4 Z6 R4 O) A  e
  2. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 345678
    0 O3 T  R" z5 f2 N6 i% N
  3. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 456789
    7 y- g) h0 l1 j* V) q: n
  4. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 987654
    ! ?1 y0 t, h, W: S; ~$ d8 Q8 N" h
  5. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] ni
    , ~. r/ P6 [* X8 K& X; S0 D
  6. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] wo0 l3 [. H7 g. k5 c: D
  7. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(72)] 123456
    0 D6 s, Q. b# j. f) f. \1 W2 Z
  8. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(75)] ==================================================================
    3 T- \* F6 {8 s
  9. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 234567
    / }. H/ G6 B* t6 O- R) J
  10. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 345678
    $ v  O) }, W, S2 i3 T( _
  11. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 456789' v5 t2 [4 G0 }  k
  12. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(79)] 987654! W% N# p' d7 |) A
  13. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(82)] ==================================================================9 A* }  C; c" \2 ]3 y! r* U
  14. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] aaa
    * p: z0 y# B7 w: t( \
  15. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] bbb
    9 _9 |; a2 W( K9 m4 J) n
  16. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] ccc) f$ x3 d5 x6 r0 w% _7 y3 j3 _4 M$ P% c
  17. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] www; r# g; ]+ n7 ]/ e- H
  18. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] xxx
    6 H7 h8 e8 ~; j
  19. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] yyy/ d( g* t8 H- U4 f9 w% X
  20. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] zzz$ h4 g% H+ u! C& D1 K
  21. 12-22 14:13:45 [INFO] [t.MongoAdvaceQueryTest(85)] rrr6 U+ d) b  f7 E
  22. 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
复制代码

" k& {5 M& A' C+ ~8 T# K1 {% F5 j9 X; b* L8 R
这里我要特别说明一下, 当使用了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等信息。

# I4 F: f& r& ^+ J% C
3 E8 W8 Q0 c7 T2 ^: e( k  Z: m1 `7 x0 N7 r1 K! }
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 支持支持 反对反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

GMT+8, 2024-12-22 15:57 , Processed in 0.133513 second(s), 23 queries .

Copyright © 2001-2024 Powered by cncml! X3.2. Theme By cncml!