Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. select country_id, city_id, person_id from mytable
  2.  
  3.  
  4. country_id,city_id,person_id
  5. 123,45,100334
  6. 123,45,3460456
  7. 123,45,943875
  8. 123,121,4362
  9. 123,121,124747
  10. 146,87,3457320
  11. 146,89,3495879
  12. 146,89,34703924
  13.  
  14. select country_id, city_id, person_id, ???, ??? from mytable
  15.  
  16. country_id,city_id,person_id,country_num,city_num
  17. 123,45,100334,1,1
  18. 123,45,3460456,1,1
  19. 123,45,943875,1,1
  20. 123,121,4362,1,2
  21. 123,121,124747,1,2
  22. 146,87,3457320,2,1
  23. 146,89,3495879,2,2
  24. 146,89,34703924,2,2
  25.  
  26. SELECT
  27. *,
  28. dense_rank() OVER (ORDER BY country_id),
  29. dense_rank() OVER (PARTITION BY country_id ORDER BY city_id)
  30. FROM
  31. mytable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement