私はつぶやきをmongodb内に格納するために遊んでいます。各オブジェクトは次のようになります。
{
"_id" : ObjectId("4c02c58de500fe1be1000005"),
"contributors" : null,
"text" : "Hello world",
"user" : {
"following" : null,
"followers_count" : 5,
"utc_offset" : null,
"location" : "",
"profile_text_color" : "000000",
"friends_count" : 11,
"profile_link_color" : "0000ff",
"verified" : false,
"protected" : false,
"url" : null,
"contributors_enabled" : false,
"created_at" : "Sun May 30 18:47:06 +0000 2010",
"geo_enabled" : false,
"profile_sidebar_border_color" : "87bc44",
"statuses_count" : 13,
"favourites_count" : 0,
"description" : "",
"notifications" : null,
"profile_background_tile" : false,
"lang" : "en",
"id" : 149978111,
"time_zone" : null,
"profile_sidebar_fill_color" : "e0ff92"
},
"geo" : null,
"coordinates" : null,
"in_reply_to_user_id" : 149183152,
"place" : null,
"created_at" : "Sun May 30 20:07:35 +0000 2010",
"source" : "web",
"in_reply_to_status_id" : {
"floatApprox" : 15061797850
},
"truncated" : false,
"favorited" : false,
"id" : {
"floatApprox" : 15061838001
}
created_atをチェックして18:47から19:00までのすべてのオブジェクトを見つけるクエリをどのように記述しますか?日付が特定の形式で保存されるようにドキュメントを更新する必要がありますか?
2010-04-29T00:00:00.000Z
方が、同じ日付/時刻をミリ秒単位で計算するよりもはるかに簡単です。また、タイムゾーンの変換も簡単に行えます。また、日付はすでにうるう日、うるう秒、および通常は自分で処理したくないその他の奇妙なものを処理しています。