面试题答案
一键面试[
{
"$project": {
"name": 1,
"bonus": {
"$cond": [
{
"$and": [
{ "$gt": ["$years_of_service", 5] },
{ "$eq": ["$department", "Engineering"] }
]
},
{ "$multiply": ["$salary", 0.2] },
{
"$cond": [
{
"$and": [
{ "$gt": ["$years_of_service", 3] },
{ "$eq": ["$department", "HR"] }
]
},
{ "$multiply": ["$salary", 0.1] },
0
]
}
]
}
}
}
]