Advertisement
Guest User

Untitled

a guest
May 4th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. +----+--------+-----+
  2. | id | userId |state|
  3. +----+--------+-----+
  4. | 1 | 1 |AZ |
  5. | 2 | 1 |AK |
  6. | 4 | 1 |AL |
  7. | 5 | 1 |CO |
  8. | 6 | 1 |CA |
  9. | 7 | 2 |AZ |
  10. | 8 | 2 |AK |
  11. +----+--------+-----+
  12.  
  13. +----+---------+--------+
  14. | id | job | from | to |
  15. +----+------+------+----+
  16. | 1 | job1 | AZ |AK |
  17. | 2 | job2 | AL |CO |
  18. +----+---------+--------+
  19.  
  20. +------+--------+
  21. | userId | job |
  22. +--------+------+
  23. | 1 | job1 | // As User 1 will have state AZ & AK
  24. | 1 | job2 | // As User 1 will have state AL & CO
  25. | 2 | job1 | // As User 2 will have state AZ & AK
  26. +----+----------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement