我有一个restaurants
集合,其中包含3772个文档,我正在尝试查找包含grades
数组中score
80 < score < 100
个元素的所有文档}。
但是,我注意到以下两个查询之间存在很大差异:
db.restaurants.find(
{"grades":
{$elemMatch: {score: {$gt: 80}, score: {$lt: 100}}}
}
)
返回所有文档,而
db.restaurants.find(
{"grades":
{$elemMatch: {score: {$gt: 80, $lt: 100}}}
}
)
只返回3个文件。
$elemMatch
上的documentation,表明
$ elemMatch运算符匹配包含数组字段的文档,其中至少有一个元素符合所有指定的查询条件。
但是,我注意到第一个查询(类似于$and
运算符)似乎与第二个查询的执行方式不同。为什么会出现差异?
示例文档:
{
"_id" : ObjectId("57290430139a4a37132ca096"),
"address" : {
"building" : "345",
"coord" : [
-73.9864626,
40.7266739
],
"street" : "East 6 Street",
"zipcode" : "10003"
},
"borough" : "Manhattan",
"cuisine" : "Indian",
"grades" : [
{
"date" : ISODate("2013-05-30T00:00:00Z"),
"grade" : "A",
"score" : 12
},
{
"date" : ISODate("2012-04-06T00:00:00Z"),
"grade" : "C",
"score" : 92
},
{
"date" : ISODate("2011-11-03T00:00:00Z"),
"grade" : "C",
"score" : 41
}
],
"restaurant_id" : "40381295"
}
答案 0 :(得分:2)
您在MongoDB中通过一对{
和}
传递的内容是javascript对象。在javascript对象中,每个键只能有一个值。
表达式{score: {$gt: 80}, score: {$lt: 100}}
尝试将两个不同的值分配给同一个键score
,因此一个覆盖另一个。结果仅解释为{score: {$lt: 100}}
。
您的第二个查询应根据您的说明为您提供所需的结果。