$将一个新字段作为mongodb中两个字段的最小值

时间:2015-04-22 23:36:09

标签: mongodb aggregation-framework

作为聚合管道的一部分,我想将一个新字段投影到一个文档上,该文档至少是两个现有字段。

给出这样的文件:

{
    _id: "big1",
    size: "big",
    distances: { big: 0, medium: 0.5, small: 1 }
}
{
    _id: "med1",
    size: "medium",
    distances: { big: 0.5, medium: 0, small: 0.5 }
}
{
    _id: "small1",
    size: "small",
    distances: { big: 1, medium: 0.5, small: 0 }
}

“distance”子文档显示了文档大小的“远”程度 其他可能的尺寸。

我希望为文档累积排序分数,以显示它与一组参数的接近程度。如果我只是寻找“大”文件,我可以这样做:

aggregate([
    {$project: {"score": "$distances.big"}}
    {$sort: {"score": 1}}
]);

但是假设我想对“大”或“中等”文档进行同等排序。我想要的是:

aggregate([
    {$project: {"score": {$min: ["$distances.big", "$distances.medium"]}}},
    {$sort: {"score": 1}}
])

但这不起作用,因为$ min只对$ group查询中的相邻文档进行操作。

有没有办法将两个现有字段中最小值的值作为排序参数进行投影?

1 个答案:

答案 0 :(得分:3)

您可以使用$cond运算符执行比较,使用$lt运算符找到最小值:

db.test.aggregate([
    {$project: {score: {$cond: [
        {$lt: ['$distances.big', '$distances.medium']}, // boolean expression
        '$distances.big',   // true case
        '$distances.medium' // false case
    ]}}},
    {$sort: {score: 1}}
])

结果:

[ 
    {
        "_id" : "big1",
        "score" : 0
    }, 
    {
        "_id" : "med1",
        "score" : 0
    }, 
    {
        "_id" : "small1",
        "score" : 0.5
    }
]