面试题答案
一键面试db.students.aggregate([
{
$match: {
age: { $gt: 18 },
scores: { $elemMatch: { $gt: 80 } }
}
}
]);
db.students.aggregate([
{
$match: {
age: { $gt: 18 },
scores: { $elemMatch: { $gt: 80 } }
}
}
]);