Advertisement
Guest User

Untitled

a guest
Sep 6th, 2015
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. __________________________
  2. | id | email | password |
  3. |-------------------------|
  4. | 1 | a@g.com | 123 |
  5. | 2 | b@g.com | 123 |
  6. | 3 c@g.com | 123 |
  7. | 4 d@g.com | 123 |
  8. --------------------------
  9.  
  10. ______________
  11. |id | name |
  12. |--------------|
  13. |1 | customer |
  14. |2 | retailer |
  15. ----------------
  16.  
  17. __________________
  18. |id_user | id_role|
  19. |------------------|
  20. | 1 | 1 | -> a@gmail.com is a customer
  21. | 2 | 2 | -> b@gmail.com is a retailer
  22. | 3 | 1 | -> c@gmail.com is a customer
  23. | 4 | 1 | -> d@gmail.com is a customer
  24. ------------------
  25.  
  26. ____________________
  27. |id| user_id| price |
  28. |--------------------|
  29. |1 | 1 | 10.00 | -> price claimed by a customer a@gmail.com
  30. |2 | 2 | 5.00 | -> price claimed by a retailer b@gmail.com
  31. |3 | 1 | 6.00 | -> price claimed by a previous customer a@gmail.com
  32. |4 | 3 | 5.00 | -> price claimed by a customer c@gmail.com
  33. |5 | 2 | 7.00 | -> price claimed by a previous retailer b@gmail.com // How to get this one
  34. |6 | 3 | 8.00 | -> price claim by a customer c@gmail.com
  35. ---------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement