有人可以帮助我查询按日期> 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尚不成熟,请帮助我进行查询。预先感谢。
答案 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" }
}
}
])
我修改了以下内容:-
您可以了解有关$ unwind here
的更多信息