网站大量收购独家精品文档,联系QQ:2885784924

数据库试题整理.docVIP

  1. 1、本文档共11页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
数据库试题整理

查询选修课程最多的学生的学号和姓名 (3) select top 1 学号=student.sno,姓名=student.sname from student inner join grade on student.sno=grade.sno group by student.sname,student.sno order by count(student.sno) desc 2. 将“计算机”学生的“信息系统”的分数置0分处理。 (2) create view gg(score) as select score from grade,student,department,course where grade.sno=student.sno and student.dno=department.dno and department.dname=计算机 and course.cno=grade.cno and course.cname=信息系统 update gg set gg.score=0; 3.查询选修课程中,有课程没有成绩、但是其他课程的成绩均在80分以上的同学的姓名、课程号、成绩 (2) 方法1: select sname,cno,score from student,grade where student.sno = grade.sno and grade.sno in(select sno from grade where score is null) and grade.sno not in(select sno from grade where score 80) and grade.sno in(select sno from grade where score =80) group by sname,cno,score 错误: select sname,cno,score from student,grade where student.sno = grade.sno and EXISTS( select * from grade s1 where s1.score80 and student.sno=sno and exists ( select * from grade s2 where s1.sno=s2.sno and s2.score is null ) ) 4检索所有平均成绩超过80分以上的课程名称、授课教师。 方法1: create view gradescore as select cno,avg(score) average from grade group by cno select cname,teacher from course where cno in ( select cno from gradescore where average80 ) 方法2: select cname,teacher from course where cno in (select cno from student,grade where grade.sno = student.sno group by cno having avg(score)=80 ) 5. 查询姓名是三个字的学生情况 (2) 方法1: select * from student where ltrim(sname) like ___ and ltrim(sname) not like __ and ltrim(sname) not like _ and ltrim(sname) is not null 方法2: select * from student where len(ltrim(sname))=3 6. 查询所有未选修 ‘03’ 号课程的学生姓名(用存在量词) ----错误结果 select distinct student.sno,sname from student left join grade on student.sno = grade.sno where not exists(select sno from grade where cno=03and student.sno = grade.sno) ----正确 select sno,sname from student where not exists (select * f

文档评论(0)

baoyue + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档