查询至少选修了“信息系统”和“数学”这两门课程的学生的基本信息
select student. *
from student, sc, course
where student. sno=sc. sno and sc. cno=course. cno and student. sno
(select student. sno
from student, sc, course y, course v
where student. sno=sc. sno and sc. cno=course. cno
and
x. cname 1ike'信息系统'and y. cname 1ike'数学')
要查询选修了信息系统和数学这两门学生的基本信息,因为一条course.cname语句只能查询一个,如果同时查询这两门课程会导致出错,所以要在course的基础上构建两个course表,分别为x和y