mangodb命令

1、分组求和查询命令

 db.getCollection('crm_batch_call').aggregate([
    { 
         $match: {
            "call_time":{"$gte":ISODate("2019-08-28T00:00:00.000+0000"),"$lte":ISODate("2019-08-28T15:59:59.000+0000")},//大于小于条件
            "call_result_desc" : {$ne:'接通'},//非等于
            "gw_id":{$exists:true},//是否存在
            "customer_id":{$in:[1,2]}//in操作
            "wordstemplate_name":/催告/ //模糊查询
            }
    },
    {
        $group: {
            _id: {
                "call_result_code":"$call_result_code",
                "call_result_desc":"$call_result_desc"
                },
            num:{$sum:1}
        }
    }
]).forEach(
    function(document)
    {
      print("\r\n"+document._id.call_result_desc+","+document.num)
        }
    );

2、链表查询

 db.getCollection('crm_batch_call').aggregate([
    {
         $match: {
            customer_id:67,
            "call_time":{"$gte":ISODate("2019-07-22T00:00:00.000+0000"),"$lte":ISODate("2019-07-24T15:59:59.000+0000")}
            }
    },
     {
         $lookup:{
            from: "crm_call_record",//连接的表(B表)
            localField: "uid",//A表的连接条件
            foreignField: "uuid",//B表的连接条件
            as: "call_text"//连接结果别名
            }
     },
     {$project:{
         "uid":1,
         batch_no:1,
         phone:1,
         wordstemplate_name:1,
         robot_name:1,
         call_result_desc:1,
         intent:1,
         call_time:1,
         bill_duration:1,
         "call_text":{"atext":1,"btext":1,"sort":1
             }
         }
}
])

3、分组后数据求和

db.getCollection('crm_call_record').aggregate([{
    $match: {
        "time": {
            "$gte": ISODate("2019-01-24" + "T00:00:00.000+0000"),
            "$lte": ISODate("2019-01-24" + "T15:59:59.000+0000")
        }
    }
},
{
    $project: {
        "uuid": 1
    }
},
{
    $group: {
        _id: "$uuid"
    }
},
{
    $group: {
        _id: null,
        count: {
            $sum: 1
        }
    }
}])

 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

倾尽一世殇梦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值