查询选修某课程的同学人数多于5人的教师姓名。 24、select tname from teacher where tno in(select x.tno from course x,score y where x.cno=y.cno group by x.tno having count(x.tno)>5);
打工人何苦为难打工人的博客 24、查询选修某课程的同学人数多于5人的教师姓名。 select t.name,c.no from courses c,teachers t where c.teacher_no=t.no and c.no in(select s.course_no from scores s group by s.course_no having count(s....