MongoDB聚合日期查询

时间:2019-03-26 18:19:03

标签: aggregation-framework

有人可以帮助我查询按日期> 2015-08-02和按日期<2016-05-02获取bal数组的计数吗?

我的收藏集:

{
"_id" : {
    "a" : "NA",
    "b" : "HXYZ",
    "c" : "12345",
    "d" : "AA"
},


   "bal" : [
 {
        "type" : "E",
        "date" : "2015-08-02"

},

{
        "type" : "E",
        "date" : "2017-08-01"


},
 {
        "type" : "E",
        "date" : "2016-07-07"


}

]  }

我尝试了以下查询,

db.getCollection(bal).aggregate([
{$match:{
        "_id_a" : "NA"
        }
    },

{
    $project: {
        "bal": 1, 
            lessThanDate: {
            $cond: [ {$lt:["$bal.date","2016-05-02"]}, 3, 0]
        },
        moreThanDate: {
            $cond: [ {$gt:["$bal.date","2015-08-02"]}, 4, 0]
        }  
    }
},
{
    $group: {
        _id: "$bal",
        countSmaller: { $sum: "$lessThanDate" },
        countBigger: { $sum: "$moreThanDate" }
    }
}
 ])

查询未按预期运行。

预期结果应为bal数组计数为1。

由于mongodb尚不成熟,请帮助我进行查询。预先感谢。

2 个答案:

答案 0 :(得分:0)

$facet可以帮助您根据不同的条件类别选择bal

var maxDate = '2016-05-02';
var minDate = '2015-08-02';

db.getCollection('bal').aggregate([
{ $match: { '_id.a': 'NA' }},
{ $facet: {
    'balancesBelowMax': [
        { $unwind: '$bal'},
        { $match: {'bal.date': {$lte: maxDate}}}
    ],
    'balancesAboveMax': [
        { $unwind: '$bal'},
        { $match: {'bal.date': {$gte: minDate}}}
    ],
}},
{ $project: { balancesBelowMax: {$size: '$balancesBelowMax'}, balancesAboveMax: {$size: '$balancesBelowMax'} }}
])

答案 1 :(得分:0)

除了查询中的一些更改外,还可以在嵌套数组上使用$ unwind解决该问题。

db.getCollection("temp").aggregate([
{ "$unwind": "$bal"},
{$match:{
    "_id.a" : "NA"
    }
},

{
$project: {
    "bal": 1, 
    lessThanDate: {
        $cond: [ {$lt:["$bal.date",ISODate("2016-05-02")]}, 1, 0]
    },
    moreThanDate: {
        $cond: [ {$gt:["$bal.date",ISODate("2015-08-02")]}, 1, 0]
    }
}
},
{
$group: {
    _id: "$bal.type",
    countSmaller: { $sum: "$lessThanDate" },
    countBigger: { $sum: "$moreThanDate" }
}
}
])

我修改了以下内容:-

  1. 使用ISODate代替字符串(,如果您使用日期,则可以使用新的Date() 必须使用String作为日期值而不是ISODate()
  2. 将匹配条件从“ _ id_a”:“ NA” 更改为“ _ id.a”:“ NA”
  3. 将bal.type分组为_id(您可以根据需要设置其他字段)
  4. 使用$ unwind

您可以了解有关$ unwind here

的更多信息