数据库中sql语句查询没学全王老师所讲课程的学生姓名。

2024-12-03 08:16:45
推荐回答(4个)
回答1:

  数据库中sql语句查询没学全王老师所讲课程的学生姓名:select sname as 学生姓名 from s where not exists ( select * from c,sc where c.cno=sc.cno and cname='王老师' and sc.sno=s.sno );
  SQL即结构化查询语言(Structured Query Language),是一种特殊目的的编程语言,是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统;同时也是数据库脚本文件的扩展名。
  SQL语句无论是种类还是数量都是繁多的,很多语句也是经常要用到的,SQL查询语句就是一个典型的例子,无论是高级查询还是低级查询,SQL查询语句的需求是最频繁的。

回答2:

Select Sname from Student
where exists 存在
(select * from Course 有一门课

where Course.T#=“~~~” and not exists 没学过

(select * from SC

where S#=Student.S# and C#=Course.C#));

回答3:

select sname from s where sno in (select sno from sc where sno = select cno from c where tname='王老师')and sno <>(select sno from sc where sno = select cno from c where tname='王老师')
这个试下

回答4:

select

s.sname
from s,c,sc
where
s.sno=sc.sno
and
c.cno = sc.cno
and tname='王老师';