可以这么考虑!--student学生表;course课程表;SC选课表;
--Sno
学号;Sname学生姓名;Cno课程编号;
法一:
selectSname
fromstudent
whereSnoIN(selectSno
fromSC
groupbySno
havingcount(*)=(selectcount(*)fromcourse))
法二:
selectSname
fromstudent--学生表
whereNOTexists(select*
fromcourse--课程表
whereNOTexists(select*
fromSC
where--选课表
Sno=student.sno
andcno=Course.Cno))