Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1685169
  • 博文数量: 186
  • 博客积分: 3044
  • 博客等级: 中校
  • 技术积分: 2493
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-25 15:04
文章分类

全部博文(186)

文章存档

2024年(2)

2022年(4)

2021年(3)

2020年(1)

2019年(5)

2018年(13)

2017年(6)

2016年(10)

2015年(11)

2014年(11)

2013年(13)

2012年(23)

2011年(25)

2010年(2)

2008年(1)

2007年(5)

2006年(51)

分类: NOSQL

2018-11-30 13:45:53

1

点击(此处)折叠或打开

  1. var mydb=db.getSisterDB("local");
    var mycursor=mydb.oplog.rs.find().addOption(DBQuery.Option.tailable).addOption(DBQuery.Option.awaitData);
    while(mycursor.hasNext()){printjson(mycursor.next());};

2:
   使用aggrate进行统计
   1:分组统计:db.dbname.aggregate([{$match:{}},{$group:{....}}])
   2:统计全部:db.dbname.aggregate([{$match:{}},{$group:{_id:null,total:{$sum:"$price"}}}])
       重点是:_id:null
阅读(2652) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~