sql--习题.pptVIP

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

1、求供应工程J1零件的供应商号码 select sno from spj where jno=j1 2、求没有使用天津单位生产的红色零件的工程号 select jno from j where jno not in (select jno from spj,s,p where spj.sno=s.sno and spj.pno=p.pno and city=天津 and color=红) 3、求供应工程J1零件P1的供应商号码 select sno from spj where jno=j1 and pno=p1 4、求供应工程J1零件为红色的供应商号码 select sno from spj where jno=j1 and pno in (select pno from p where color=红) 5、求至少用了供应商S1所供应的全部零件的工程号 select jno from spj a where sno=‘s1’ and not exists (select * from spj b where sno=s1 and not exists (select * from spj c where a.jno=c.jno and b.pno=c.pno)) 6、求供应商与工程在同一城市能供应的零件数量 select quantity from spj,s,j where spj.sno=s.sno and spj.jno=j.jno and s.city=j.city P39课后习题2.13 学生S(s#,sn,sd,sa) 社团T(t#,cn) 学生加入社团St(s#,t#,c) 1、求计算机系CS学生的学号、姓名 select s#,sn from s where sd=cs‘ 2、求参加了某一社团的学生学号、姓名 select s#,sn from s where s# in (select s# from st) 3、求参加了社团名称为“田径队”的学号和姓名 select s.s#,sn from s,st,t where s.s#=st.s# and st.t#=t.t# and cn=田径队‘ 4、求未参加任何社团的学生姓名 select sn from s where s# not in (select s# from st) 5、求计算机系的学生以及年龄小于18岁的学生 select * from s where sd=cs union select * from s where sa18 P83课后习题3.10 学生Student(sno,sname,ssex,sage,sdept) 课程Course(cno,cname,cdept,ccredit,tname) 选课Sc(sno,cno,grade) 1、建立三个表 create table student(sno char(5) not null,sname varchar(10) not null,ssex char(2) not null,sage tinyint null,sdept varchar(30) null) create table course(cno char(2) not null,cname char(20) not null,cdept varchar(30) null,ccredit tinyint not null,tname char(10) not null) create table sc(sno char(5) not null,cno char(2) not null,grade decimal(4,1) null) 2、检索年龄大于23岁的男学生的学号和姓名 select sno,sname from student where sage23 and ssex=男 3、检索至少选修“刘力”教师所授课程中一门课程的女学生姓名 select sname from student where ssex=女 and sno in (select sno from sc where cno in (select cno from course where tname=刘力)) 4、检索至少选修两门课程的学生学号 select sno from sc group by sno having count(*)=2 5、检索选修课程包含“刘力”老师所授课程的学生学号 select sno from student s where not exists (select * from course c where tname=刘力 and

文档评论(0)

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

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

1亿VIP精品文档

相关文档