我正在尝试获取所有文档,其中instock集合中至少有一个元素的仓库字段不为空。预期结果:仅丢弃最后的文档。
db.inventory.insertMany( [
{ item: "journal", instock: [ { warehouse: "A", qty: 5 }, { warehouse: "C", qty: 15 } ] },
{ item: "notebook", instock: [ { warehouse: "C", qty: 5 } ] },
{ item: "planner", instock: [ { warehouse: null, qty: 40 }, { warehouse: "B", qty: 5 } ] },
{ item: "postcard", instock: [ { warehouse: null, qty: 15 }, { warehouse: null, qty: 35 } ] }
]);
此查询会丢弃3和4。
db.getCollection('inventory').find({
$and: [{"instock.warehouse": {$ne: null}}, {"instock.warehouse": {$exists: true}}]
})
这个返回所有元素
db.getCollection('inventory').find({
"instock": {$elemMatch: {"warehouse": {$ne: null}, "warehouse": {$exists: true}}}
})
答案 0 :(得分:1)
使用以下查找查询。
请注意使用$elemMatch
& $ne
比较数组的所有元素
即包括instock数组在仓库字段中至少有一个空值的所有文档。
db.inventory.find({"instock":{"$elemMatch":{"warehouse":{"$ne":null}}}})