Advertisement
davidemarceddu

Voli: 10 top compagnie aeree per nazione

Mar 31st, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //Voli: 10 top compagnie aeree per nazione(maggior numero di aeroporti legati alla nazione negli ultimi 30 gg)
  2.  
  3. db.parsed_data.aggregate(
  4.  
  5. {$match : {$and: [
  6. {$and: [{"Segments.From.Country":"IT"}, {"Segments.To.Country" :"IT" }]},
  7. {"SearchDate": { $gte: ISODate("2017-03-17T00:00:00.000+01:00"), $lte: ISODate("2017-04-17T00:00:00.000+01:00") }}]}}
  8. ,
  9.  
  10. {$unwind: "$Segments"},
  11. {
  12. $group : {_id : "$Segments.To.Code" ,
  13.  
  14. "total" : { $sum : 1 }}
  15.  
  16. },
  17. {$sort : {"total" : -1}})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement