版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、一 在数据库 school 中建立student , sc, course 表。 学生表、课程表、选课表属于数据库 School ,其各自的数据结构如下: 学生 Student (Sno,Sname,Ssex,Sage,Sdept) 序列含数据类长 6 (char) Sno 字符型学号 1 8 Sname 字符型2 (varchar) 姓名 2 3 (char) Ssex 字符型性别 整数4 年龄Sage (smallint) 15 5 字符型系科 sdept (varchar) 课程表 course(Cno,Cname,Cpno,Ccredit) 序号 列名 含义 数据类型 长度 4 课程号
2、 1 字符型Cno (char) 20 (varchar) 2 字符型课程名cname 4 3 字符型 (char) Cpno 先修课 学分 Ccredit (tinyint) 4 短整数 学生选课 SC(Sno,Cno,Grade) 序号 列名 含义 数据类型 长度 6 (char) 字符型1 Sno 学号 4 2 字符型Cno (char) 课程号 12,2 (decimal) 3 小数 Grade 成绩 二 设定主码 1 Student表的主码:sno 2 Course表的主码:cno 3 Sc表的主码:sno,cno 1写出使用 Create Table 语句创建表 student ,
3、 sc, course 的SQL语句 2在student表中插入信息 学号 姓名 性别 年龄 系科 SX 男 4001 20 赵茵JSJ 杨华 4002 女21 3 删除student表中的元组 4在数据库school中删除关系student 5在student表添加属性sbirthdate 类型 datetime 练习 Delete 1 删除所有 JSJ 系的男生 delete from Student where Sdept=JSJ and Ssex=男; 2 删除“数据库原理”的课的选课纪录 delete from SC where Cno in (select Cno fromCour
4、se where Cname=数据库原理); Update 1 修改 0001 学生的系科为: JSJ 2 把陈小明的年龄加1岁,性别改为女。 2 修改李文庆的1001课程的成绩为 93 分 3 把“数据库原理”课的成绩减去1分 Select 查询语句 一 单表 1查询年龄在19至21岁之间的女生的学号,姓名,年龄,按年龄从大到小排列。 2查询姓名中第2个字为“明”字的学生学号、性别。 3查询 1001课程没有成绩的学生学号、课程号 4查询JSJ 、SX、WL 系的年龄大于25岁的学生学号,姓名,结果按系排列 5按10分制查询学生的sno,cno,10分制成绩 (1-10分 为1 ,11-20
5、分为2 ,30-39分为3,。90-100为10) 6查询 student 表中的学生共分布在那几个系中。(distinct) 7查询0001号学生1001,1002课程的成绩。 二 统计 1查询姓名中有“明”字的学生人数。 2计算JSJ系的平均年龄及最大年龄。 3查询学生中姓名为张明、赵英的人数 4计算每一门课的总分、平均分,最高分、最低分,按平均分由高到低排列 5 计算 1001,1002 课程的平均分。 6 查询平均分大于80分的学生学号及平均分 7 统计选修课程超过 2 门的学生学号 8 统计有10位成绩大于85分以上的课程号。 9 统计平均分不及格的学生学号 10 统计有大于两门课不
6、及格的学生学号 三 连接 1查询 JSJ 系的学生选修的课程号 2查询选修1002 课程的学生的学生姓名 (不用嵌套及嵌套2种方法) 3查询数据库原理不及格的学生学号及成绩 4查询选修“数据库原理”课且成绩 80 以上的学生姓名(不用嵌套及嵌套2种方法) 5查询平均分不及格的学生的学号,姓名,平均分。 6查询女学生平均分高于75分的学生姓名。 一门课程也没有选修的男学生也要列出,不能(查询男学生学号、姓名、课程号、成绩。7遗漏) 四 嵌套、相关及其他 1 查询平均分不及格的学生人数 2 查询没有选修1002 课程的学生的学生姓名 3 查询平均分最高的学生学号及平均分 (2种方法 TOP , a
7、ny , all) *4 查询没有选修1001,1002课程的学生姓名。 5 查询1002课程第一名的学生学号(2种方法) 6 查询平均分前三名的学生学号 7 查询 JSJ 系的学生与年龄不大于19岁的学生的差集 8 查询1001号课程大于90分的学生学号、姓名及平均分大于85分的学生学号、姓名 9 查询每门课程成绩都高于该门课程平均分的学生学号 10 查询大于本系科平均年龄的学生姓名 答案 参考答案 1 create table student (sno char(6), sname varchar(8), ssex char(2), sage smallint, sdept varchar
8、(15), primary key(sno); create table sc (sno char(6), cno char(4), grade decimal(12,2), primary key(sno,cno); insert into student values( 4001,赵茵,男,20,SX) delete from student drop table student alter table student add sbirthdate datetime 1 select sno, sname, sage from student where ssex=女 and sage b
9、etween 19 and 21 order by sage desc; 2 select sno, ssex from student where sname like _明% ; 3 select sno, cno from sc where grade is null and cno=1001 ; 4 select sno, sname from student where sdept in (JSJ,SX,WL) and sage25 group by sdept; select sno, cno, grade/10.0+1 as level from sc ; select dist
10、inct sdept from student ; select grade from sc where sno=0001 and (cno=1001 or cno=1002) ; select count(*) from student where sname like %明% ; select avg(sage),max(sage) from student where sdept=JSJ ; select cno,sum(grade),avg(grade),max(grade),min(grade) from sc group by cno order by avg(grade) des
11、c ; select cno, avg(grade) from sc where cno in(1001,1002) group by cno ; select sc.sno ,avg(grade) from sc group by sc.sno having avg(grade)80 ; select sno from sc group by sno having count(*)2 ; select cno from sc where grade85 group by cno having count(*)=10 ; select sno from sc group by sno havi
12、ng avg(grade)60 ; select sno from sc where grade2 ; select cno from student,sc where student.sno=sc.sno and sdept=JSJ ; a:select sname from student,sc where student.sno=sc.sno and cno=1002 ) 1002b:select sname from student where sno in (select sno from sc where cno=select sno,grade from sc,course wh
13、ere o=o and cname=数据库原理 and grade 80 and cname= 数据库原理 b:select sname from student where sno in (select sno from sc where grade80 and cno in (select cno from course where cname= 数据库原理) select sno,sname,avg(grade) from sc,student where student.sno=sc.sno group by student.sno having avg(g
14、rade)75) b:select sname from sc,student where student.sno=sc.sno and ssex=女 group by student.sno having avg(grade)75 select student.sno,sname,cno,grade from student left join sc on student.sno=sc.sno and ssex=男 select count(*) from student where sno in( select sno from sc group by sno having avg(gra
15、de)=all ( select avg(grade) from sc group by sno) select sname from student where not exists( select * from course where cno in(1001,1002) and not exists(select * from sc where sno =student.sno and cno=o) ) a:select top 1 sno from sc cno=1002 order by grade desc and grade =all ( 1002b:select sno from sc where cno= select grade from sc where cno=1002) select top 3 sno from sc group by sno order by avg(grade)desc a:select*from student where sdept=JSJ and sage19 b:select*from student where sdept=JSJ except select* from st
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2023年沼气专用发电装置项目评价分析报告
- 采购合同签订制度
- 不可抗力融资租赁合同
- 编外合同用工标准
- 智慧路灯系统解决方案
- 颈椎病手术前后配合
- 线粒体脑病的护理
- 山东省枣庄市台儿庄区2024-2025学年九年级上学期期中考试历史试题
- 辽宁省鞍山市海城市西部集团2024-2025学年七年级上学期11月期中生物学试题(含答案)
- 河南省邓州市2024-2025学年七年级上学期期中历史试题(含答案)
- 2024-2030年中国建筑施工行业运行状况及发展规模分析报告
- 2024-2025学年苏科版七年级数学上册期中复习试卷
- 露天矿安全生产年度总结
- 辽宁省大连市金普新区2024-2025学年七年级上学期11月期中英语试题(无答案)
- 生态文明学习通超星期末考试答案章节答案2024年
- 区病案质控中心汇报
- 期中测试卷(1-4单元)(试题)2024-2025学年四年级上册数学人教版
- 教育局职业院校教师培训实施方案
- 《万维网服务大揭秘》课件 2024-2025学年人教版新教材初中信息技术七年级全一册
- 2024年新华社招聘应届毕业生及留学回国人员129人历年高频难、易错点500题模拟试题附带答案详解
- 人教版(2024新版)七年级上册英语Unit 5单元测试卷(含答案)
评论
0/150
提交评论