面试题答案
一键面试假设使用的是MongoDB,查询语句如下:
db.orders.find({
"products": {
$elemMatch: {
price: { $gt: 500 },
quantity: { $gt: 1 }
}
}
});
假设使用的是MongoDB,查询语句如下:
db.orders.find({
"products": {
$elemMatch: {
price: { $gt: 500 },
quantity: { $gt: 1 }
}
}
});