Advertisement
Guest User

Untitled

a guest
Apr 8th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. SELECT * FROM customers;
  2. +------------+-----------+----------+---------------------------+
  3. | customerID | firstName | lastName | email |
  4. +------------+-----------+----------+---------------------------+
  5. | 1 | Lynn | Parker | lynn.parker@email.com |
  6. | 2 | Rebecca | Johnson | rebecca.johnson@email.com |
  7. | 3 | John | Doe | john.doe@email.com |
  8. +------------+-----------+----------+---------------------------+
  9.  
  10. SELECT * FROM products;
  11. +-----------+---------------------+----------+
  12. | productID | product | price |
  13. +-----------+---------------------+----------+
  14. | 1 | Television | 25000.00 |
  15. | 2 | Mobile Phone | 20000.00 |
  16. | 3 | Jacket | 2000.00 |
  17. | 4 | Samsung Galaxy Tab | 12000.00 |
  18. | 5 | Think and Grow Rich | 350.00 |
  19. | 6 | MacBook Air | 65000.00 |
  20. | 7 | Water Bottle | 150.00 |
  21. | 8 | Home Theater | 14500.00 |
  22. | 9 | Microwave | 7658.00 |
  23. +-----------+---------------------+----------+
  24.  
  25. SELECT * FROM orders;
  26. +---------+------------+-----------+
  27. | orderID | customerID | productID |
  28. +---------+------------+-----------+
  29. | 1 | 1 | 1 |
  30. | 2 | 1 | 3 |
  31. | 3 | 1 | 4 |
  32. | 4 | 2 | 6 |
  33. | 5 | 2 | 7 |
  34. | 6 | 2 | 8 |
  35. | 7 | 2 | 3 |
  36. | 8 | 2 | 9 |
  37. | 9 | 2 | 5 |
  38. +---------+------------+-----------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement