Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1.  
  2. db.wiezniowie.aggregate({
  3. $group : {
  4. _id: "$name",
  5. max: {
  6. $max : "$kara.dlugosc_wyroku"
  7. }
  8. }
  9. });
  10.  
  11. db.wiezniowie.aggregate({
  12. $lookup : {
  13. from: "wiezienia",
  14. pipeline: [
  15. { $match : {rodzaj:"zakłady dla młodocianych"}}
  16. ],
  17. as: "newLookup"
  18. }
  19.  
  20. $group : {
  21. _id: "$pesel",
  22. imie: "$imie",
  23. nazwisko: "$nazwisko",
  24. max_kara : {$max : "$kara.dlugosc_wyroku"}
  25.  
  26.  
  27. }
  28.  
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement