mongodb:如何过滤掉今天创建的记录?

时间:2012-07-08 03:25:30

标签: mongodb

我有一个带有datetime.now()类型的时间戳字段的集合:

"chashi_ts" : ISODate("2012-06-12T16:08:22.645Z")

只有mongodb命令行,如何找到该字段的日期时间指向的记录?

1 个答案:

答案 0 :(得分:5)

假设您可以获得当前日期....

// the start of the day (midnight)
begin_date_range = ISODate("2012-06-12T00:00:00Z");

// the start of the next day (at midnight)
// this can also be done with 11:59:59PM of the current date using $lte
end_date_range = ISODate("2012-06-13T00:00:00Z");

results = db.collection_name.where({"chashi_ts":{
              "$gte":begin_date_range,
              "$lt":end_date_range}
          );