最近被几到SQL server的查询难道了。
查询没学过"张三"老师讲授的任一门课程的学生姓名:
select * from Student s
where s.Sid not in(
select sc.Sid
from teacher t
left join Course c on c.Tid=t.Tid
left join sc on c.Cid=sc.Cid
where t.Tname='张三')
查询
最近被几到SQL server的查询难道了。
查询没学过"张三"老师讲授的任一门课程的学生姓名:
select * from Student s
where s.Sid not in(
select sc.Sid
from teacher t
left join Course c on c.Tid=t.Tid
left join sc on c.Cid=sc.Cid
where t.Tname='张三')
查询