Mongodb Subdocument Date Range Returns Wrong Results

我怕爱的太早我们不能终老 提交于 2019-12-04 19:45:33

You have to use $elemMatch operator for matching more than one component within an array element with $and

db.deals.find({ total_sold: { $elemMatch : {
  $and:[ {created_at: {$gt: new ISODate("2014-03-05T00:00:00Z") }},
         { created_at: {$lt: new ISODate("2014-03-05T23:00:00Z") }}
        ]
  }}
});

$elemMatch Doc : http://docs.mongodb.org/manual/reference/operator/query/elemMatch/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!