3

タイプdatetime.now()のタイムスタンプフィールドを持つコレクションがあります:

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

mongodbコマンドラインのみで、フィールドの日時が今日を指しているレコードを見つける方法は?

4

1 に答える 1

8

現在の日付を取得できると仮定すると....

// 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}
          );
于 2012-07-08T04:15:25.227 に答える