mongodb进阶聚合查询各种写法

mongodb聚合sql写法

1、聚合查询配上分页加排序

bash 复制代码
DBQuery.shellBatchSize = 30000
db.getCollection('svOrderRecordMo').aggregate([
{$match:{"actionType":9}},
{$group:{_id:"$svOrderId",total:{"$sum":1}}},
{$sort:{"createTime":1}},
{$skip:0},
{$limit:100}
])

2、在1的聚合查询基础上进行match过滤(过滤出total>1的数据)

bash 复制代码
DBQuery.shellBatchSize = 30000
db.getCollection('svOrderRecordMo').aggregate([
{$match:{"actionType":9}},
{$group:{_id:"$svOrderId",total:{"$sum":1}}},
{$match:{"total":{"$gt":1}}},
{$sort:{"createTime":1}},
{$skip:0},
{$limit:3000}
])

3、聚合查询时间范围并把Date的日期格式转成字符串(yyyyMMdd)然后聚合查询

bash 复制代码
db.getCollection('svRegisterRecordMo').aggregate([
  {$match:{"$and":[{"createTime":{"$gte":ISODate("2023-01-01T00:00:00.000+08:00")}}
    ,{"createTime":{"$lte":ISODate("2023-07-02T00:00:00.000+08:00")}}]   }},

  {
    $project: {
      convertedDate: {
        $dateToString: {
          format: "%Y%m%d",
          date: "$createTime"
        }
      }
    }
  },

  {
    $group: {
      _id: "$convertedDate",
      count: { $sum: 1 }
    }
  }
])

4、排序,聚合,sum求和同时应用

bash 复制代码
db.getCollection('reportAgentMo').aggregate([
{$match:{"dataType":"1.1","reportType":1,"platformType":2,"reportDate":{"$in":["2023-01-25","2023-02-25","2023-03-25","2023-04-25","2023-05-25","2023-06-25","2023-07-25","2023-08-25"]}}},
{$group:{_id:"$agentId",total:{"$sum":"$issuePercent"}}},
{$sort:{"total":-1}},
{$limit:10}
])

5、聚合对两字段求和,并把两个求和的值相除然后排序

bash 复制代码
db.getCollection('reportAgentMo').aggregate([
{$match:{"dataType":"1.1","reportType":1,"platformType":2,
    "reportDate":{"$in":["2023-01-25","2023-02-25","2023-03-25","2023-04-25","2023-05-25","2023-06-25","2023-07-25","2023-08-25"]}}},
{$group:{_id:"$agentId",total1:{"$sum":"$issueNum"},total2:{"$sum":"$svNum"}}},
{$match:{total2:{"$gt":0}}},
{$project:{_id:1,aver:{"$divide":["$total1","$total2"]}}},
{$sort:{aver:-1}},
{$limit:11}
])

6、聚合时使用$first关键字(根据customTextAnswer.text聚合,并获取第一条数据)

bash 复制代码
db.getCollection('orderExtraInfoMo').aggregate([
{$match:{"topic":"家庭年收入"
    ,"customTextAnswer.number":{"$ne":null}}},
{$group:{_id:"$customTextAnswer.text",svOrderId:{"$first":"$svOrderId"},"number":{"$first":"$customTextAnswer.number"}}},
{$sort:{"svOrderId":-1}},
{$skip:0},
{$limit:10000}
])

7、对targetValue字段进行聚合统计,key是cId

bash 复制代码
db.getCollection("channelTargetMo").aggregate([
{$match:{"targetDate":{"$gte":"2022-08-03"},"targetDate":{"$lte":"2022-09-02"},"targetDateType":"day","targetType":"deal_sv","cIdType":"subId","cId":"62eb25c3b6d6033cb3fd9174"}},
{$group:{_id:"$cId",total:{"$sum":"$targetValue"}}}
]);

8、mongodb的两表关联查询

如下所示:左表是reportCustDealInfoMo,右表是reportCustDataMo,连接条件是reportCustDealInfoMo.custId=reportCustDataMo.cId。因为默认是1对多 情况,所以aa是一个数组,

$unwind 是把aa数组展开

bash 复制代码
db.reportCustDealInfoMo.aggregate([
{
$match:{"isDeleted":false,"isDeal":true}
},

  {
    $lookup: {
      from: "reportCustDataMo",
      localField: "custId",
      foreignField: "cId",
      as: "aa"
    }
  },
  {
    $unwind: "$aa" 
  },

    {
    $match: {
      "aa.cIdType": "custId",
      "aa.reportType": "year",
      "aa.reportDate":"2021"
    }
  },
      {$group:{_id:null,
        
        dealInternetAmount:{"$sum":"$aa.dealInternetAmount"},
dealHighCriterionAmount:{"$sum":"$aa.dealHighCriterionAmount"},
dealCarCriterionAmount:{"$sum":"$aa.dealCarCriterionAmount"},
dealGroupCriterionAmount:{"$sum":"$aa.dealGroupCriterionAmount"},
dealLifeCriterionAmount:{"$sum":"$aa.dealLifeCriterionAmount"},
underwriteCdCriterionAmount:{"$sum":"$aa.underwriteCdCriterionAmount"}
    }}
    ,
    {$project:{
        dealInternetAmount:1,
        dealHighCriterionAmount:1,
        dealCarCriterionAmount:1,
        dealGroupCriterionAmount:1,
        dealLifeCriterionAmount:1,
	underwriteCdCriterionAmount:1,
        totalStaAmount:{"$add":["$dealInternetAmount","$dealHighCriterionAmount","$dealCarCriterionAmount","$dealGroupCriterionAmount","$dealLifeCriterionAmount"]}}}
])
相关推荐
就是ping不通的蛋黄派6 分钟前
MySQL数据库 管理与维护
数据库·mysql
初听于你22 分钟前
SQL常用语句解析:从查询到操作
数据库·sql
weixin_446260851 小时前
Milvus:高效能的云原生向量数据库
数据库·云原生·milvus
q***2511 小时前
Spring Boot 中使用 @Transactional 注解配置事务管理
数据库·spring boot·sql
z***3352 小时前
SQL Server 数据库管理工具的安装以及使用
数据库
e***0968 小时前
Sql Server数据库远程连接访问配置
数据库
2501_924064119 小时前
2025数据库性能测试工具:Utest、JMeter、HammerDB 等主流方案推荐
数据库·测试工具·jmeter·数据库性能测试·数据库负载测试·数据库压测工具·jmeter 压力测试
movie__movie9 小时前
秒杀库存扣减可以用redis原子自增么
数据库·redis·缓存
找不到、了10 小时前
MySQL 索引下推(ICP)的实战,彻底提升查询性能
数据库·mysql
b***676410 小时前
Springboot3 Mybatis-plus 3.5.9
数据库·oracle·mybatis