的文件我newbee到MongoDB的計數根據日期蒙戈
試圖計算基於集合的字段值的文件。 我插入時用於插入DATE()。 不過,雖然算的文件,也沒有顯示輸出
{
"_id" : 6,
"WebUser" : "F",
"PassWord" : "F",
"MailId" : "[email protected]",
"Country" : "In",
"Contact" : { "Mobile" : "6" },
"DOJ" : "Thu Jan 05 2017 16:55:08 GMT+0530 (India Standard Time)"
}
嘗試以下options.But沒有用。
db.WebUser.count({ DOJ: { $gt: new Date('01/01/2017') } })
0
db.WebUser.count({ DOJ : { $gt: new Date('01-05-2017 16:55:08') } })
0
db.WebUser.count({ DOJ : { $gt: new Date('Thu Jan 05 2017 16:55:08 GMT+0530 (India Standard Time') } })
0
如何在查找(選擇),更新和刪除中處理mongo db中的DATE。 如何從日期轉換爲字符串和字符串日期? 如何添加月/年/日像天+ 1個月+ 5 是什麼beteween日期和isodate你要插入記錄的
db.test.insert({date: new Date()})
區別
感謝
大家好,感謝您的信息。 New Date()和Date()之間有什麼區別? – raj
新的Date()返回日期對象的實例。而Date()以字符串格式返回日期。 –