"$cond"

db.items.aggregate([
    { "$project": {
        "name": 1,
        "customfield": {
            "$cond": {
                "if": { "$eq": [ "$field1", "4" ] },
                "then": 30,
                "else": {
                    "$cond": {
                        "if": { "$eq": ["$field1","8"]},
                        "then": 25,
                        "else": 10
                    }
                }
            }
        }
    }},
   { "$sort": { customfield: 1 }},
   { "$limit":12 }
]);
时间: 2024-08-26 23:56:46