📜  在 mongodb 中设置条件 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:32.507000             🧑  作者: Mango

代码示例1
db.collectionname.aggregate(
    [
        {
            $set: {                   //Compute the new value
                'ResultField': {
                    $cond: {
                        if: {
                            $lt: ['$ScoreField', 40]
                        },
                        then: "Fail",
                        else: "Pass"
                    }
                }
            }
        },
        {
            $out: 'collectionname'    //Update the records in collection
        }
    ]
)