Forráskód Böngészése

in theory, q1 and q2 are done. in theory. i cannot stress that enough

tarfeef101 6 éve
szülő
commit
db6cd6fe2c
1 módosított fájl, 10 hozzáadás és 1 törlés
  1. 10 1
      a2/a2.sql

+ 10 - 1
a2/a2.sql

@@ -4,4 +4,13 @@ select sname, snum from student where year = 2 and snum in
   (
     select deptcode from department where deptname = "computer science"
   ) having count(distinct section) > 1
-)
+)
+
+select pnum, pname from professor where deptcode not in
+(
+  select deptcode fromm department where deptname = "PM"
+) and pnum in
+(
+  select pnum from class where deptcode = "CS" and cnum = 245
+) having count(distinct term) = 1
+