Advertisement
davidemarceddu

top 20 Compagnie aeree su base nazione

Mar 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. db.parsed_data.aggregate(
  2. {
  3. $match : {$or: [{"Origin.Country" : "FR"}, {"Destination.Country" : "FR"}]}
  4. },
  5. {$unwind: "$Segments"},
  6. {
  7. $group : {_id : "$Segments.Carrier", "total" : { $sum : 1 } }//_id : "$Origin.Code"
  8. }
  9. ,
  10. {
  11. $sort : {total : -1}
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement