面试题答案
一键面试[
{
"$match": {
"exams.date": {
"$gt": ISODate("2023-01-01")
}
}
},
{
"$unwind": "$exams"
},
{
"$unwind": "$exams.grades"
},
{
"$match": {
"exams.grades.score": {
"$gt": 90
}
}
},
{
"$group": {
"_id": "$student_id"
}
}
]