面试题答案
一键面试db.students.find(
{
age: { $gt: 20 },
"scores.math": { $gt: 80 }
},
{
name: 1,
"scores.english": 1,
_id: 0
}
)
db.students.find(
{
age: { $gt: 20 },
"scores.math": { $gt: 80 }
},
{
name: 1,
"scores.english": 1,
_id: 0
}
)