Advertisement
davidemarceddu

Voli:Mostrare le 10 rotte più eco NON IT

Mar 31st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. db.parsed_data.aggregate(
  2. //{$unwind: "$Segments"},
  3. {
  4. $match : {$and: [{"Destination.Country" : {$ne:"IT"} },{"Origin.Code":"AHO"},{"Destination.Code":"TRN"}]}},
  5.  
  6. {$unwind: "$Segments"},
  7.  
  8.  
  9. {
  10.  
  11. $group : {_id : "$Segments" , minprice: { $min: "$Price"}}
  12. }
  13. ,
  14. { $sort : {"minprice": 1}} )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement