Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. ********* PART 1 ***********
  2. SELECT COUNT(*) FROM users;
  3. answer: 50;
  4.  
  5.  
  6. ******** PART 2 ************
  7. SELECT * FROM items ORDER BY price LIMIT 5;
  8. answer:
  9. 25|Small Cotton Gloves|Automotive, Shoes & Beauty|Multi-layered modular service-desk|9984
  10. 83|Small Wooden Computer|Health|Re-engineered fault-tolerant adapter|9859
  11. 100|Awesome Granite Pants|Toys & Books|Upgradable 24/7 access|9790
  12. 40|Sleek Wooden Hat|Music & Baby|Quality-focused heuristic info-mediaries|9390
  13. 60|Ergonomic Steel Car|Books & Outdoors|Enterprise-wide secondary firmware|9341
  14.  
  15.  
  16. ******** PART 3 ************
  17. SELECT * FROM items WHERE catergory = 'books';
  18. answer:
  19. 4|Fantastic Steel Chair|Books|Advanced attitude-oriented encryption|9246
  20. 21|Fantastic Rubber Shoes|Books|Reverse-engineered modular hierarchy|8904
  21. 76|Ergonomic Granite Chair|Books|De-engineered bi-directional portal|1496
  22. 98|Practical Plastic Hat|Books|Implemented non-volatile model|3056
  23.  
  24. SELECT * FROM items WHERE category LIKE '%books%';
  25. answer:
  26. 4|Fantastic Steel Chair|Books|Advanced attitude-oriented encryption|9246
  27. 12|Fantastic Rubber Shirt|Toys & Books|Ergonomic impactful emulation|6720
  28. 21|Fantastic Rubber Shoes|Books|Reverse-engineered modular hierarchy|8904
  29. 60|Ergonomic Steel Car|Books & Outdoors|Enterprise-wide secondary firmware|9341
  30. 76|Ergonomic Granite Chair|Books|De-engineered bi-directional portal|1496
  31. 77|Fantastic Plastic Gloves|Beauty, Movies & Books|Robust bandwidth-monitored local area network|6584
  32. 95|Small Cotton Hat|Beauty & Books|Reduced regional instruction set|1727
  33. 97|Incredible Granite Computer|Books, Toys & Tools|De-engineered national policy|2377
  34. 98|Practical Plastic Hat|Books|Implemented non-volatile model|3056
  35. 100|Awesome Granite Pants|Toys & Books|Upgradable 24/7 access|9790
  36.  
  37. SELECT * FROM items WHERE category = 'Books' ORDER BY price LIMIT 1;
  38. answer:
  39. 76|Ergonomic Granite Chair|Books|De-engineered bi-directional portal|1496
  40.  
  41.  
  42. ********* PART 4 *********
  43. SELECT * FROM addresses WHERE street = '6439 Zetta Hills';
  44. result:
  45. 43|40|6439 Zetta Hills|Willmouth|WY|15029
  46.  
  47. SELECT * FROM users WHERE id = "40";
  48. result:
  49. 40|Corrine|Little|rubie_kovacek@grimes.net
  50.  
  51. SELECT * FROM addresses WHERE user_id = '40';
  52. result:
  53. 43|40|6439 Zetta Hills|Willmouth|WY|15029
  54. 44|40|54369 Wolff Forges|Lake Bryon|CA|31587
  55.  
  56.  
  57. ********* PART 5 *********
  58. SELECT * FROM users WHERE first_name = 'Virginie';
  59. answer:
  60. 39|Virginie|Mitchell|daisy.crist@altenwerthmonahan.biz
  61.  
  62. SELECT * FROM addresses WHERE user_id = '39';
  63. answer:
  64. 41|39|12263 Jake Crossing|New York|NY|10108
  65. 42|39|83221 Mafalda Canyon|Bahringerland|WY|24028
  66.  
  67. UPDATE addresses SET zip = '12345' WHERE id = '41';
  68. SELECT * FROM addresses WHERE user_id = '39';
  69. answer:
  70. 41|39|12263 Jake Crossing|New York|NY|12345
  71. 42|39|83221 Mafalda Canyon|Bahringerland|WY|24028
  72.  
  73.  
  74. ******** PART 6 *********
  75. SELECT SUM(quantity) FROM orders;
  76. answer:
  77. 2125
  78.  
  79.  
  80. ********** PART 7 ************
  81. INSERT INTO users (id, first_name, last_name, email) VALUES ('51', 'Alexander', 'Thomas', 'aletho24@gmail.com');
  82. INSERT INTO orders (id, user_id, item_id, quantity, created_at) values ('378', '51', '69', '420', '2017-01-18 16:00:27.123462');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement