ImageVerifierCode 换一换
格式:DOCX , 页数:23 ,大小:22.73KB ,
资源ID:4516518      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/4516518.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(sqlServer习题与答案.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

sqlServer习题与答案.docx

1、sqlServer习题与答案从学生表Student(Sno,Sname,Ssex,Sage,Sdept)中查询出全体学生的学号与姓名1. 查询全体学生的详细记录2. 显示前 5条纪录3. 显示前 50%条纪录4. 查询所有年龄在17岁以下的学生姓名及其年龄。5. 某些学生选修课程后没有参加考试,所以有选课记录,但没有考试成绩。查询缺少成绩的学生的学号和相应的课程号。(成绩为null)6. 查所有有成绩的学生学号和课程号7. 查询学生的所有信息,按学号的降序排列 1.select * from student 2.select top 5 * from student 3.select top

2、50 percent * from student 4.select sname,sage from student where sage11. 查询学生总人数。2. 查询选修了课程的学生人数。3. 计算1001号课程的学生平均成绩。4. 查询选修1001号课程的学生最高分数。5. 求各个课程号及相应的选课人数。(group by)6. 查询选修了1门以上课程的学生学号。(having)7. 请说明union的作用。1.select count(*) as 总人数 from student 2.select count(distinct sno) as 总人数 from sc 3.select

3、 avg(score) as 平均成绩from sc where cno=1001 4.select max(score) from sc where cno=10015.select cno,count(*)as 人数,max(score ) from sc group by cno6.select sno from sc group by sno having count(cno)17.在列数和列的顺序相同且数据类型相同的前提下,将多个select语句返回的结果组合到同一个结果当中。请举例说明With cube和With rollup的作用。select cno,cname,count(c

4、no)as 人数 from course group by cno,cname with cube说明每一个分组统计的总数select cno,cname,count(cno)as 人数from course group by cno,cname with rollup说明每一个小分组的统计总数3. 使用compute 汇总所有学生的成绩平均分。select sno,cno,score from sc compute avg(score) 统计所有内容,求出平均成绩 4. 使用compute by汇总每个人的选修课程数。select * from sc order by sno,cno com

5、pute count(cno) by sno按SNO,CNO分组进行统计使用ANSI连接和sql server 连接两种方式完成:1. 查询每个学生的学号、姓名及其选修课程的课程号、成绩。 使用ANSI:select student.sno,sname,sc.sno,cno from student inner join sc on student.sno=sc.sno 使用sql server:select student.sno,sname,sc.sno,cno from student,sc where student.sno=sc.sno2. 查询出101号学生选修的课程的课程名称和学

6、分 使用ANSI:select cname,ccredit from course inner join sc on o=o 使用sql server:select cname,ccredit from course,sc where o=o and sc.sno=101 查询出选修1002号课程的学生的学号、姓名。 使用ANSI select student.sno,sname from student inner join sc on student.sno=sc.sno and o=1002 使用sql server:select student.sno,sname from stude

7、nt,sc where student.sno=sc.sno and o=1002 -查询与“name2”在同一个系学习的学生信息。 select *from student where sdept in (select sdept from student where sname=name2)and sname!=name2查男女各有多少人 select ssex ,count(*)as 人数 from student group by ssex 按降序排列:group by是分组 order by 是排序 select ssex ,count(*)as 人数 from student gr

8、oup by ssex order by ssex desc选课多余2的人数select cno,count(*)from sc group by cno having count(*)2查询出101号学生选修的课程的课程名称和学分。使用sql server:select cname,ccredit from sc,course where sno=101 and o=o使用ANSI:select cname,ccredit from course inner join sc on o=o and sno=101嵌套查询:select cname,ccredit from course whe

9、re cno in (select cno from sc where sno=101)exists查询:select cname,ccredit from course where exists(select * from sc where cno=o and sno=101)-查询选修课程号为“1001”的所有男生的姓名和该科成绩。sql server:select sname, score from student,sc where student.sno=sc.sno and o=1001and student.ssex=男ANSI:select sname,score from st

10、udent inner join sc on student.sno=sc.sno and student.ssex=男and o=1001-查询出101号学生选修的课程的学分总和。-使用sql server:select sum(ccredit) as 总学分from sc,course where sc.sno=101and o=o-使用ANSI:select sum(ccredit) as 总学分 from course inner join sc on sc.sno=101and o=o-嵌套查询:select sum(ccredit) as 总学分 from course where

11、 cno in(select cno from sc where sno=101)-exists:select sum(ccredit) from coursewhere exists(select cno from sc where sno=101 and o=o)-查询出每个学生已经修过的总学分。sql server:select sno,sum(ccredit) as 总学分 from sc,course where o=o group by sc.sno order by sum(ccredit) desc-使用ANSI:select sno,sum(ccredit) as 总学分 f

12、rom scinner join course on o=o group by sc.sno order by sum(ccredit) desc-查询出选修c语言的学生的学号、姓名和成绩-使用sql server: select student.sno,sname,score from student,sc,course where ame=c and student.sno=sc.sno and o=o-查询出选修了学分是4的课程的学号-使用sql server: select o,sno from sc,course where o=o and course.ccredit=4 -查询出

13、选修了学分是4的课程的姓名-使用sql server: select cname,sno from sc,course where o=o and course.ccredit=4 -查询出没有选修学分是4的课程的学号-使用sql server: select sno ,o from sc,course where o=o and course.ccredit41.将一个新生记录(学号:111;姓名:陈冬;性别:男;所在系:IS;年龄:18岁)插入到Student表中。 insert into student (sno,sname,ssex,sage,sdept) values (111,陈冬

14、,男,18,IS)2.插入一条选课记录(sno: 111,cno:1111 ),新插入的记录在score列上将会取空值。能插入吗? 存在外键则不能3.student数据库中,有一个表Deptage(Sdept,Avgage)用来存放每个系的学生平均成绩,但还没有数据。请你对每一个系求学生的平均年龄,并把结果存入表Deptage。 select sdept,avg(sage)as avgage into avger from student group by sdept任务2(update):1.将学生101的年龄改为19岁。 update student set sage=19 where s

15、no=1012.将所有学生的年龄增加1岁。 update student set sage=sage+1 3.将信息系全体学生的成绩置零。 update sc set score=0 where sno in ( select sno from student where sdept=信息)任务3(delete):1.删除学号为102的学生选课记录。 delete sc where sno=1022.删除所有的学生选课记录。 delete sc3.删除信息系所有学生的选课记录。 delete sc where sno in( select sno from student where sdep

16、t=信息) 4.你能删除student表中学号为101的学生记录吗?问什么? 不能删除 DELETE 语句与 REFERENCE 约 束FK_sc_student1冲突。该冲突发生于数据 库students,表dbo.sc, column sno。任务1:回答以下问题:1. 什么是视图2. 使用视图的优点3. 创建视图的注意事项步骤1:每个人独立完成,15分钟。步骤2:提问学生任务完成情况,5分钟步骤3:教师补充点评,5分钟。任务2:创建一个视图view1,查询选修课程号为1001的所有女生的姓名和该科成绩。create view view1asselect sname,score from

17、student inner join sc on student.sno=sc.snowhere ssex=女 and cno=1001任务3:完成以下操作:创建一个视图v1,在视图中包含sc表中及格的选课信息。create view v1as select *from scwhere score=601. 插入数据记录:将这两条记录插入视图v1 中(105,1001,69)(105,1002,50)。观察视图和表的记录变化。insert into v1values (105,1001,69)insert into v1values (105,1002,50)2. 修改数据记录:修改视图v1,

18、将(105,1001,69)的成绩改为99UPDATE v1set score=99where sno=105 and cno=1001。3. 删除数据记录 :修改视图v1,删除105号学生的选课记录。delete from v1where sno=105步骤1:每个人独立完成,5分钟。步骤2:与你的同组搭档得出一个小组结果,5分钟。步骤3:学生介绍任务完成情况,3分钟。步骤4:教师补充点评,2分钟。任务4:创建视图v1,create view v1 asselect student.sno,sname,cno,score from student inner join scon studen

19、t.sno=sc.sno完成:1. 将满足sno=101 and cno=1003的记录sname改为n1.UPDATE v2set sname=n1where sno=101 and cno=10032. 将满足sno=101 and cno=1004的记录sname改为n1,cno改为1002.不行3. 将sno=109,sname=name9的记录插入v1.4. 将sno=110,sname=nam10,score=99的记录插入v1,能够正确执行吗?5. 删除sno=101 and cno=1004的记录,可以吗?不可以,因为关系到多个基表任务1:通过学习教材及课件回答以下问题:1.

20、标识符命名规则 答:标识符分为标准标识符和分隔标识符两大类2. 如何注释3. 局部变量的声明、赋值方式4. 全局变量的特点,使用。5. 声明一个变量x并为x赋值,查询成绩大于x(x是局部变量)的学生学号和选修的课程号.declare x int set x=90select sno,cno,score from sc where score=x6. 声明一个变量avgscore,并将sc表中成绩的平均分赋值给变量avgscore。你有几种赋值方式?declare avgscore int set avgscore=(select avg(score) from sc)select avgsco

21、re 平均成绩go5. 声明一个变量x并为x赋值,查询成绩大于x(x是局部变量)的学生学号和选修的课程号.declare x intset x=60select sno,cno from sc where scorex6. 声明一个变量avgscore,并将sc表中成绩的平均分赋值给变量avgscore。你有几种赋值方式?declare avgscore intset avgscore=(select avg(score) from sc)print avgscoreselect avgscore=avg(score) from scprint avgscore-no是student表的ide

22、ntity列insert into student(sno,sname) values(110,name10)select identity identity1goselect * from student where sno=101 or sno=102goselect rowcountgouse studentsgoselect trancount as trancount1,servername servername1,version version1,identity identity1,language language1go-no是student表的identity列insert

23、into student(sno,sname) values(110,name10)select identity identity11.(if)如果sc表中所有学生的平均成绩大于80,显示成绩优异,并显示出成绩大于80的选课记录。否则显示学生成绩一般。declare avgscore int set avgscore=(select avg(score) from sc where score is not NULL) if avgscore=80 begin print 成绩优异 select * from sc where score=80 end else begin print 成绩

24、一般 end-在student中查询学生信息,如果存在此生,则将学生的信息输出;如果不存在此生,则输出数据库中没有该生信息declare name nchar(8)set name=name1if exists(select * from student where sname=name)beginprint select *from student where sname=nameendelsebeginprint数据库中没有该生信息。end-3.(while)使用while循环,对course表中的学分总和进行检查,-若学分总和小于50,对每门课程学分加1,直到学分总和不小于50为止。wh

25、ile (select sum(ccredit) from course)=50breakend/使用while循环,对course表中的学分总和进行检查,若学分总和小于50,/对每门课程学分加1,直到学分总和不小于50为止。declare sumc intset sumc=(select sum(ccredit) from course)WHILE sumc50BEGIN UPDATE course SET ccredit= ccredit+1 set sumc=(select sum(ccredit) from course)ENDWHILE (SELECT sum(ccredit) FROM course) 50BEGIN UPDATE course SET ccredit= ccredit+1END-4.(try catch)在try中删除

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1