Skip to content

Instantly share code, notes, and snippets.

@NameNolen
Created May 5, 2019 12:38
Show Gist options
  • Save NameNolen/fb29f354ecdbb3d84f8951ba4844b95f to your computer and use it in GitHub Desktop.
Save NameNolen/fb29f354ecdbb3d84f8951ba4844b95f to your computer and use it in GitHub Desktop.
扁平化mongo中的数组对象
db.getCollection('table').aggregate
([ {$match:{"a" : {$gt:"2018-01-01 08:24:35"}}},
{ $unwind: {path: '$fillDocArray(subDoc)'}},
{ $project: { 'b':1,
'c':1,
'd':1,
'e': 1,
another_a: '$subDoc.subfield1',
another_b:'$subDoc.subfield'} }
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment