50个SQL语句(MySQL版) 问题六
程序员文章站
2022-07-02 15:27:32
表结构 student(StuId,StuName,StuAge,StuSex) 学生表 teacher(TId,Tname) 教师表 course(CId,Cname,C_TId) 课程表 sc(SId,S_CId,Score) 成绩表 问题六:查询学过“001”并且也学过编号“002”课程的同学 ......
--------------------------表结构--------------------------
student(stuid,stuname,stuage,stusex) 学生表
teacher(tid,tname) 教师表
course(cid,cname,c_tid) 课程表
sc(sid,s_cid,score) 成绩表
----------------------------------------------------------
问题六:查询学过“001”并且也学过编号“002”课程的同学的学号、姓名
select stuid,stuname from student where stuid in ( select a.sid from sc a ,sc b where a.sid=b.sid and a.s_cid='001' and b.s_cid='002' );
答案仅供参考,不一定完全正确,若发现错误或有更好的,欢迎评论,互相交流,一起成长!!!
上一篇: 前端如何做异步并发量的控制?