group by date 聚合查詢?nèi)掌?統(tǒng)計(jì)每天數(shù)據(jù)(信息量)
1
{
"_id" : ObjectId("557ac1e2153c43c320393d9d"),
"msgType" : "text",
"sendTime" : ISODate("2015-06-12T11:26:26.000Z")
}
2
{
"_id" : ObjectId("557ac1ee153c43c320393d9e"),
"msgType" : "text",
"sendTime" : ISODate("2015-06-12T11:26:38.000Z")
}
3
{
"_id" : ObjectId("557ac2012de5d32d213963b5"),
"msgType" : "text",
"sendTime" : ISODate("2015-06-12T11:26:56.000Z")
}
4
{
"_id" : ObjectId("557ac978bb31196e21d23868"),
"msgType" : "text",
"sendTime" : ISODate("2015-06-12T11:58:47.000Z")
}
5
{
"_id" : ObjectId("557ac9afbb31196e21d23869"),
"msgType" : "text",
"sendTime" : ISODate("2015-06-12T11:59:43.000Z")
}
SQL Here
db.getCollection('wechat_message').aggregate(
[
{ $project : { day : {$substr: ["$sendTime", 0, 10] }}},
{ $group : { _id : "$day", number : { $sum : 1 }}},
{ $sort : { _id : -1 }}
]
)
Result Here
"result" : [
{
"_id" : "2015-07-06",
"number" : 13.0000000000000000
},
{
"_id" : "2015-07-05",
"number" : 3.0000000000000000
},
{
"_id" : "2015-07-03",
"number" : 10.0000000000000000
},
{
"_id" : "2015-07-02",
"number" : 29.0000000000000000
},
]
查詢某一天所有信息的3種方法,根據(jù)日期查詢
mongodb的查詢真讓人難以琢磨,就查詢單天信息,都需要花費(fèi)一番功夫才行。
第一種方式:
coll.aggregate([
{$project:{sendDate: {$substr: ['$sendTime', 0, 10]}, sendTime: 1, content:1}},
{$match:{sendDate: '2015-07-05'}},
])
第二種方式(第一種的變異):
coll.aggregate([
{$match: {'sendTime': {'$gte': new Date('2015-07-05'), '$lt': new Date('2015-07-06')}}}
第三中方式(第二種的變異):
coll.aggregate([
{$match: {'sendTime': {'$gte': new Date('2015-07-05 00:00:00'), '$lte': new Date('2015-07-05 23:59:59')}}}
查詢結(jié)果如下(展示一種方式:其他展示略有不同):
[ { _id: 5599b09bc16aac90e9fb7995, sendDate: '2015-07-05' },
{ _id: 5599b161c16aac90e9fb7996, sendDate: '2015-07-05' },
{ _id: 5599b161c16aac90e9fb7997, sendDate: '2015-07-05' } ]
您可能感興趣的文章:- JS實(shí)現(xiàn)微信彈出搜索框 多條件查詢功能
- 原生js實(shí)現(xiàn)查詢天氣小應(yīng)用
- jsp頁面常用的查詢及顯示方法分析
- 簡單封裝js的dom查詢實(shí)例代碼
- JSP簡單添加,查詢功能代碼
- 純javascript判斷查詢?nèi)掌谑欠駷橛行掌?/li>
- JavaScript生成SQL查詢表單的方法
- JavaScript獲得url查詢參數(shù)的方法
- javascript查詢字符串參數(shù)的方法
- js模糊查詢實(shí)例分享