欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

50个SQL语句(MySQL版) 问题五

程序员文章站 2022-08-09 17:30:11
表结构 student(StuId,StuName,StuAge,StuSex) 学生表 teacher(TId,Tname) 教师表 course(CId,Cname,C_TId) 课程表 sc(SId,S_CId,Score) 成绩表 问题五:查询没学过“叶平”老师课的同学的学号、姓名 SELE ......

--------------------------表结构--------------------------

student(stuid,stuname,stuage,stusex) 学生表

teacher(tid,tname) 教师表

course(cid,cname,c_tid) 课程表

sc(sid,s_cid,score) 成绩表

----------------------------------------------------------

问题五:查询没学过“叶平”老师课的同学的学号、姓名

select stuid,stuname from student
where stuid not in
(
    select sid from sc
    join course on sc.s_cid=course.cid
    join teacher on course.c_tid=teacher.tid
    where teacher.tname="叶平"
);

答案仅供参考,不一定完全正确,若发现错误或有更好的,欢迎评论,互相交流,一起成长!!!