Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. +----+------+
  2. | id | name |
  3. +----+------+
  4. | 1 | Bob |
  5. +----+------+
  6. | 2 | Alice|
  7. +----+------+
  8. | 3 | John |
  9. +----+------+
  10.  
  11. +----+--------+
  12. | id | name |
  13. +----+--------+
  14. | 1 | Group 1|
  15. +----+--------+
  16. | 2 | Group 2|
  17. +----+--------+
  18. | 3 | Group 3|
  19. +----+--------+
  20.  
  21. +-------------+------------------+
  22. | customer_id | customergroup_id |
  23. +-------------+------------------+
  24. | 1 | 1 |
  25. +-------------+------------------+
  26. | 1 | 3 |
  27. +-------------+------------------+
  28. | 2 | 2 |
  29. +-------------+------------------+
  30.  
  31. +----+------------+
  32. | id | name |
  33. +----+------------+
  34. | 1 | Wristwatch |
  35. +----+------------+
  36. | 2 | Tank top |
  37. +----+------------+
  38. | 3 | Sneakers |
  39. +----+------------+
  40. | 4 | Sweatshirt |
  41. +----+------------+
  42.  
  43. +------------+------------------+
  44. | product_id | customergroup_id |
  45. +------------+------------------+
  46. | 1 | 1 |
  47. +------------+------------------+
  48. | 1 | 2 |
  49. +------------+------------------+
  50. | 4 | 1 |
  51. +------------+------------------+
  52. | 2 | 3 |
  53. +------------+------------------+
  54. | 3 | 1 |
  55. +------------+------------------+
  56. | 3 | 3 |
  57. +------------+------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement