Created
January 13, 2018 13:51
-
-
Save gt11799/6789c643fe809573acfd12c2386d7415 to your computer and use it in GitHub Desktop.
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.task_log.aggregate( | |
[ | |
{ | |
$match: { | |
"status": "1009", | |
} | |
}, | |
{ | |
$group: { | |
_id: "$source_id", | |
min_created: {$min: "$created"}, | |
task_no: {$first: "$task_no"}, | |
} | |
}, | |
{ | |
$out: "first_finish_task", | |
} | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment