Created
May 20, 2016 02:03
-
-
Save anapaulagomes/4b27c5557cf0abf2fde2461bbbbfe51b to your computer and use it in GitHub Desktop.
Agrupa registros por hora
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.checkins.aggregate( | |
{ "$match": {"base.cidade": "newyork", "local.nome": "Starbucks"}}, | |
{ "$project": { "h":{"$hour":"$data"} } }, | |
{ "$group":{ "_id": { "hour":"$h"}, "total":{ "$sum": 1} } }, {$sort: {"_id.hour": 1}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment