mikeyworx

SQL FINAL EXAM

Jul 4th, 2023
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.52 KB | None | 0 0
  1. Write SQL Query to display  the list of  all shipments that originated in Egypt.
  2. *
  3.  
  4. SELECT *
  5. FROM shipments
  6. WHERE origin = 'Egypt';
  7.  
  8. Write SQL Query to display the items that are from the USA.
  9. *
  10.  
  11. SELECT *
  12. FROM items
  13. WHERE country_of_origin = 'USA';
  14.  
  15.  
  16. Write SQL Query to display  were born after 1970s.
  17. *
  18.  
  19. SELECT *
  20. FROM individuals
  21. WHERE birthdate > '1979-12-31';
  22.  
  23.  
  24. Write SQL Query to display the list of captains  that are Generation X.
  25.  
  26. SELECT *
  27. FROM captains
  28. WHERE birthdate BETWEEN '1965-01-01' AND '1980-12-31';
  29.  
  30.  
  31. Write SQL Query to display the maximum miles reach (7500).
  32.  
  33. SELECT *
  34. FROM records
  35. WHERE miles_reached = 7500;
  36.  
  37. Write SQL Query to display the list of captains  from the youngest to the oldest. (Ascending)
  38.  
  39. SELECT *
  40. FROM captains
  41. ORDER BY birthdate ASC;
  42.  
  43.  
  44. Write SQL Query to display the list of captains  from the youngest to the oldest
  45.  
  46. SELECT *
  47. FROM captains
  48. ORDER BY birthdate ASC;
  49.  
  50.  
  51. Write SQL Query to display highest Captain rank birthday date.
  52.  
  53. SELECT birthdate
  54. FROM captains
  55. ORDER BY rank DESC
  56. LIMIT 1;
  57.  
  58.  
  59. Write SQL Query to find second highest salary of Captain?(land to shore activity).
  60.  
  61. SELECT MAX(salary) AS second_highest_salary
  62. FROM captains
  63. WHERE activity = 'land to shore'
  64. AND salary < (
  65.     SELECT MAX(salary)
  66.     FROM captains
  67.     WHERE activity = 'land to shore'
  68. );
  69.  
  70.  
  71. Write SQL Query to display  the list of the manufacturers of all ships with a capacity of  67200lbs   pounds or more.
  72.  
  73. SELECT manufacturer
  74. FROM ships
  75. WHERE capacity >= 67200;
  76.  
Advertisement
Add Comment
Please, Sign In to add comment