从分组文档中获取最后和最小值

时间:2019-01-11 14:59:29

标签: mongodb nosql aggregation

我的文档模型如下:

{
    "model": "ABC123",
    "date": "2018-12-24T23:00:00.000+0000",
    "price": "2000" ,
}

我想检索集合以获取文档数组:

[
  { "_id" : "ABC123", "newestDate" : ISODate("2018-12-26T23:00:00Z"), "newestPrice" : 2801.33, "lowestPriceAtAll": 1300 }, 
{ "_id" : "ABC124", "newestDate" : ISODate("2018-12-26T23:00:00Z"), "newestPrice" : 2801.33, "lowestPriceAtAll": 990}
]

其中_idmodel字段,newestPrice是最新文档的价格(按model分组),lowestPriceAtAll是所有文档中价格最低的价格相同的model

我提出了两个查询。 首先是找到最低价的文件:

   offers.aggregate([ 
        { $sort: { "model": 1, "price": 1 }}, 
        { 
            $group: { 
                _id: "$model", 
                lowestPrice: { "$first": "$price" },
                lowestPriceDate: { "$first": "$date"},
            }
        }
    ])

第二个是查找最新文档:

offers.aggregate([ 
        { $sort: { "model": 1, "date": -1 }}, 
        { 
            $group: { 
                _id: "$model", 
                newestDate: { "$first": "$date" },
                newestPrice: { "$first": "$price"},
            }
        }
    ])

是否可以将这两个查询合并为一个? (最重要的是,文档必须按model字段分组)。

1 个答案:

答案 0 :(得分:1)

您可以使用.bin.

$facet