MongoDB - 在日期之间查找文档

时间:2018-05-02 09:28:52

标签: mongodb date find between

我需要在两个Unix时间戳之间的集合中查找(或统计)文档。

查询:

db.collection_test.find(
{ $and: [
    {"field_end" : {$gte : new Date(1511296200)}},
    {"field_end" : {$lte : new Date(1521491400)}}
]}
).count();

返回计数零但文档存在于集合中:

{
    "_id" : ObjectId("5ae84987f6786823007c4c4c"),
    "field_src" : "768687",
    "field_end" : ISODate("2018-01-20T18:34:12Z"),
    "counter_type" : "national"
}

为什么?!!!

0 个答案:

没有答案