其他分享
首页 > 其他分享> > 21天好习惯第十四期-14

21天好习惯第十四期-14

作者:互联网

查询至少选修了“信息系统”和“数学”这两门课程的学生的基本信息

 

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

标签:天好,21,sno,course,cname,student,sc,cno,14
来源: https://blog.csdn.net/qq_53203726/article/details/121169938