模型说明:学升:s(s#,name),选课:sc(s#,c#,cname),课程:c(c#,cname)
如:选择选修了‘程军’所教的全部课程的学生
 select sname from s,sc
   where s.s#=sc.s#
   and c# in (select c# from c
              where teacher='程军')
   group by sname,s.s#
   having count(*)=(select count(*) from c where teacher='程军')请问那位高手有其他方法?