Skip to content

Instantly share code, notes, and snippets.

@gt11799
Created January 13, 2018 13:51
Show Gist options
  • Save gt11799/6789c643fe809573acfd12c2386d7415 to your computer and use it in GitHub Desktop.
Save gt11799/6789c643fe809573acfd12c2386d7415 to your computer and use it in GitHub Desktop.
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