面试题答案
一键面试db.collection.find({
"user.age": { $gt: 25 },
"orders": {
$elemMatch: {
"status": "completed",
"amount": { $gt: 100 }
}
}
});
db.collection.find({
"user.age": { $gt: 25 },
"orders": {
$elemMatch: {
"status": "completed",
"amount": { $gt: 100 }
}
}
});