Advertisement
davidemarceddu

Voli: 10 top Aeroporti con il maggior numero di compagnie ae

Mar 30th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. db.parsed_data.aggregate(
  2.  
  3. {$match : {$and: [
  4. {$and: [{"Segments.From.Country":{$ne: null} }, {"Segments.To.Country" :{$ne: null} },{"Segments" :{"$size":1}}]},
  5. {"SearchDate": { $gte: ISODate("2017-03-17T00:00:00.000+01:00"), $lte: ISODate("2017-04-17T00:00:00.000+01:00") }}]}}
  6. ,
  7.  
  8.  
  9. {
  10. $group : {_id : "$Segments.To.Code" ,
  11. "company" :{$addToSet: {"carrier": "$Segments.Carrier"}},
  12. "total" : { $sum : 1 }}
  13.  
  14. },
  15. {$sort : {total : -1}})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement