Guest User

Untitled

a guest
Mar 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. db.getCollection('cvs_500').aggregate([
  2. { $project : {
  3. _id : 0 ,
  4. candidates : 1 ,
  5. }},
  6. { $unwind:{path:"$candidates"}},
  7. { $replaceRoot: { newRoot: "$candidates" } },
  8. {$out: "candidates_flat"}
  9. ])
Add Comment
Please, Sign In to add comment