MongoDb - 查询数组

时间:2017-04-30 13:10:10

标签: mongodb

基于MongoDB文档https://docs.mongodb.com/manual/tutorial/query-arrays/

我有这个系列:

db.inventory.insertMany([
   { item: "journal", qty: 25, tags: ["blank", "red"], dim_cm: [ 14, 21 ] },
   { item: "notebook", qty: 50, tags: ["red", "blank"], dim_cm: [ 14, 21 ] },
   { item: "paper", qty: 100, tags: ["red", "blank", "plain"], dim_cm: [ 14, 21 ] },
   { item: "planner", qty: 75, tags: ["blank", "red"], dim_cm: [ 22.85, 30 ] },
   { item: "postcard", qty: 45, tags: ["blue"], dim_cm: [ 10, 15.25 ] }
]);

这些查询是否相同?

db.inventory.find( { tags: { $all: ["red"] } } )

db.inventory.find( { tags: "red" } )

如果他们有不同的目的,何时使用一个而不是另一个?

1 个答案:

答案 0 :(得分:1)

是的,这两个查询是等价的。当您要查询包含多个tags值的文档时,您只能使用$all

db.inventory.find( { tags: { $all: ["red", "blank"] } } )

此查询将匹配示例集合中除最后一个文档之外的所有文档。