Advertisement
davidemarceddu

Top 20 compagnie aeree con maggior numero di voli sull’aerop

Mar 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //Voli: Top 20 compagnie aeree con maggior numero di voli sull’aeroporto negli ultimi 30 gg"SearchDate"
  2.  
  3. db.parsed_data.aggregate(
  4. {$match : {$and: [
  5. {$or: [{"Origin.Code": "AHO" }, {"Destination.Code" : "AHO" }]},
  6. {"SearchDate": { $gte: ISODate("2017-03-17T00:00:00.000+01:00"), $lte: ISODate("2017-03-17T00:00:00.000+01:00") }}]}},
  7.  
  8. {$unwind: "$Segments"},
  9. {
  10. $group : {_id : "$Segments.Carrier" }},
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement