Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. select nvewi.zone as "Zone-Type", sum(nvewi.bev) as "Inhabitants Isochrones", sum(nvewp.bev) as "Inhabitants Puffer"
  2. from nvewi
  3. inner join nvewp
  4. on nvewi.zone=nvewp.zone
  5. group by nvewi.zone
  6.  
  7. bev zone
  8. 50 a
  9. 20 a
  10. 30 a
  11. 10 b
  12. 20 b
  13. 30 b
  14. 2 c
  15. 2 c
  16.  
  17. bev zone
  18. 10 a
  19. 10 a
  20. 20 a
  21. 5 b
  22. 3 b
  23. 2 b
  24. 1 c
  25. 1 c
  26.  
  27. Zone-Type Inhabitants Isochrones Inhabitants Puffer
  28. a 300 120
  29. b 180 30
  30. c 8 4
  31.  
  32. Zone-Type Inhabitants Isochrones Inhabitants Puffer
  33. a 100 40
  34. b 60 10
  35. c 4 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement