a2.sql 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. -- Current term is 1185
  2. /*
  3. The student number and name of second year students who have obtained
  4. a grade lower than 65 in at least two courses in a department with the
  5. name “computer science”.
  6. */
  7. select distinct sname, snum from student where year = 2 and snum in
  8. (
  9. select snum as old_snum from mark where grade < 65 and deptcode in
  10. (
  11. select deptcode from department where deptname = "computer science"
  12. ) /*having count(distinct section) > 1*/ and snum in
  13. (
  14. select snum from mark where grade < 65 and deptcode in
  15. (
  16. select deptcode from department where deptname = "computer science"
  17. ) and snum != old_snum
  18. )
  19. )
  20. /*
  21. The number and name of professors who are not in the pure math (PM)
  22. department, and who are teaching CS245 for the first time.
  23. */
  24. select distinct pnum, pname from professor where deptcode not in
  25. (
  26. select deptcode fromm department where deptname = "PM"
  27. ) and pnum in
  28. (
  29. select pnum from class where deptcode = "CS" and cnum = 245 and term = 1185
  30. ) and pnum not in
  31. (
  32. select pnum from class where deptcode = "CS" and cnum = 245 and term != 1185
  33. )
  34. /*
  35. The number, name and year of each student who has obtained a grade in
  36. CS240 that is within 3 marks of the highest ever grade recorded for that
  37. course.
  38. */
  39. select distinct snum, sname, year from student where snum in
  40. (
  41. select snum, grade from mark where deptcode = "CS" and cnum = 240 and snum >= (select grade from mark where deptcode = "CS" and cnum = 240 order by grade desc limit 1)
  42. )
  43. /*
  44. The number and name of students who have completed two years, who
  45. have a final grade of at least 85 in every computer science course that
  46. they have taken, and who have always been taught by a professor in the
  47. computer science (CS) department.
  48. ASSUMING THIS PROFESSOR RESTRICTION ONLY APPLIES TO THE CS COURSES
  49. */
  50. select distinct snum, sname from student where year > 2 and snum not in
  51. (
  52. select snum, grade from mark where deptcode = "CS" and grade < 85
  53. ) and snum not in
  54. (
  55. select snum as prev_snum, deptcode as prev_deptcode, cnum as prev_cnum, term as prev_term, section as prev_section from mark where cnum in
  56. (
  57. select pnum, cnum from class where prev_deptcode = deptcode and prev_cnum = cnum and prev_term = term and prev_section = section and pnum in
  58. (
  59. select pnum from professor where deptcode = prev_deptcode
  60. )
  61. )
  62. )
  63. /*
  64. A sorted list of all departments who do not have a professor currently
  65. teaching a course offered by a different department.
  66. */
  67. select deptname as prof_dept from department where deptcode not in
  68. (
  69. select deptcode as old_dept, pnum as old_pnum from professor where pnum in
  70. (
  71. select pnum from class where term = 1185 and deptcode != old_dept and pnum = old_pnum
  72. )
  73. ) order by deptname
  74. /*
  75. For each pair of classes for the same course that were taught in the same
  76. term, and that where also taught by different professors: the minimum
  77. grades obtained and the maximum grades obtained. In addition to these
  78. four values, each result should include the number and name of each professor,
  79. as well as the identifying attributes for each class.
  80. */
  81. /*
  82. Pairs of distinct professors such that whenever the first one teaches a class
  83. in a particular term the second also teaches a class for the same course
  84. in the same term. Report a oprofessor number and name for both the
  85. professors.
  86. */
  87. -- NOW CAN USE AGGREGATION
  88. /*
  89. The course number and total enrollment count for all of its classes of each
  90. course. Also, include only those course numbers for courses with a total
  91. enrollment count among the three lowest such counts.
  92. */
  93. select course.cname, COUNT() from course, joinedTable
  94. inner join class on enrollment.deptcode = class.deptcode, enrollment.cnum = class.cnum, enrollment.term = class.term, enrollment.section = class.section as joinedTable
  95. /*
  96. The percentage of professors in pure math who have always taught no
  97. more than a single course in any given term. (Note that a percentage
  98. should be a number between 0 and 100.)
  99. */
  100. /*
  101. The number of different third or fourth year students in each section of
  102. each course taught by a pure math professor in past terms. The result
  103. should include the professor number, professor name, course number and
  104. section, and should also be sorted first by the name of the professor,
  105. then by the professor number, third by the course number, and finally by
  106. section. (Note that a section is identified by a term and a section number.
  107. Also assume that sorting by section means sorting by term and then by
  108. section number. The result will therefore have a total of six columns.)
  109. */
  110. /*
  111. The ratio of professors in pure math (PM) to professors in applied math
  112. (AM) who have taught a class in which the average grade obtained in the
  113. class was greater than 77.
  114. */
  115. /*
  116. For the current term, report how many courses there are in the schedule
  117. with a particular number of classes. For example an output
  118. {[5, 1], [4, 2], [1, 5]}
  119. indicates that there are 5 courses with a single class (section), 4 courses
  120. with 2 classes, and 1 course with 5 classes scheduled in the curent term.
  121. */