MongoDB 4.0 og nyere
Brug $toDate
db.session_log.aggregate([
{ "$group": {
"_id": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": {
"$toDate": {
"$multiply": [1000, "$LASTLOGIN"]
}
}
}
},
"count": { "$sum": 1 }
} }
])
eller $convert
db.session_log.aggregate([
{ "$group": {
"_id": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": {
"$convert": {
"input": {
"$multiply": [1000, "$LASTLOGIN"]
},
"to": "date"
}
}
}
},
"count": { "$sum": 1 }
} }
])
MongoDB>=3.0 og <4.0:
db.session_log.aggregate([
{ "$group": {
"_id": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
}
},
"count": { "$sum": 1 }
} }
])
Du skal konvertere LASTLOGIN
felt til et millisekunds tidsstempel ved at gange værdien med 1000
{ "$multiply": [1000, "$LASTLOGIN"] }
, konverter derefter til en dato
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
og dette kan gøres i Dato(0)
objekt, udtræk derefter $år
, $month
, $dayOfMonth
dele fra den konverterede dato, som du derefter kan bruge i din $gruppe
pipeline for at gruppere dokumenterne efter dag.
Du bør derfor ændre din aggregeringspipeline til denne:
var project = {
"$project":{
"_id": 0,
"y": {
"$year": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
},
"m": {
"$month": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
},
"d": {
"$dayOfMonth": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
}
}
},
group = {
"$group": {
"_id": {
"year": "$y",
"month": "$m",
"day": "$d"
},
"count" : { "$sum" : 1 }
}
};
Kørsel af aggregeringspipeline:
db.session_log.aggregate([ project, group ])
ville give følgende resultater (baseret på eksempeldokumentet):
{ "_id" : { "year" : 2014, "month" : 1, "day" : 3 }, "count" : 1 }
En forbedring ville være at køre ovenstående i en enkelt pipeline som
var group = {
"$group": {
"_id": {
"year": {
"$year": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
},
"mmonth": {
"$month": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
},
"day": {
"$dayOfMonth": {
"$add": [
new Date(0),
{ "$multiply": [1000, "$LASTLOGIN"] }
]
}
}
},
"count" : { "$sum" : 1 }
}
};
Kørsel af aggregeringspipeline:
db.session_log.aggregate([ group ])