MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongodb sortiert Dokumente nach komplex berechnetem Wert

Ihr $temp_score und $temp_votes existieren noch nicht in Ihrem $divide .

Sie können ein weiteres $project erstellen :

db.user.aggregate([{
    "$project": {
        'temp_score': {
            "$add": ["$total_score", 100],
        },
        'temp_votes': {
            "$add": ["$total_votes", 20],
        }
    }
}, {
    "$project": {
        'temp_score':1,
        'temp_votes':1,
        'weight': {
            "$divide": ["$temp_score", "$temp_votes"]
        }
    }
}])

oder Neuberechnung von temp_score und temp_votes in $divide :

db.user.aggregate([{
    "$project": {
        'temp_score': {
            "$add": ["$total_score", 100],
        },
        'temp_votes': {
            "$add": ["$total_votes", 20],
        },
        'weight': {
            "$divide": [
                { "$add": ["$total_score", 100] },
                { "$add": ["$total_votes", 20] }
            ]
        }
    }
}]);

Sie können dies auch in einem einzigen $project tun mit $let Betreiber die verwendet wird, um 2 Variablen temp_score zu erstellen und temp_votes . Aber die Ergebnisse werden unter einem einzigen Feld zugänglich sein (hier total ) :

db.user.aggregate([{
    $project: {
        total: {
            $let: {
                vars: {
                    temp_score: { $add: ["$total_score", 100] },
                    temp_votes: { $add: ["$total_votes", 20] }
                },
                in : {
                    temp_score: "$$temp_score",
                    temp_votes: "$$temp_votes",
                    weight: { $divide: ["$$temp_score", "$$temp_votes"] }
                }
            }
        }
    }
}])