北邮大三数据库实验六数据查询分析实验_(2).docx

上传人:知****量 文档编号:43110096 上传时间:2022-09-16 格式:DOCX 页数:10 大小:213.12KB
返回 下载 相关 举报
北邮大三数据库实验六数据查询分析实验_(2).docx_第1页
第1页 / 共10页
北邮大三数据库实验六数据查询分析实验_(2).docx_第2页
第2页 / 共10页
点击查看更多>>
资源描述

《北邮大三数据库实验六数据查询分析实验_(2).docx》由会员分享,可在线阅读,更多相关《北邮大三数据库实验六数据查询分析实验_(2).docx(10页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、实验六 数据查询分析实验实验目的通过对不同情况下查询语句的执行分析,巩固和加深对查询和查询优化相关理论知识的理解,提高优化数据库系统的实践能力,熟悉了解Sybase中查询分析器的使用,并进一步提高编写复杂查询的SQL 程序的能力。实验容1.索引对查询的影响(1)对结果集只有一个元组的查询分三种情况进行执行(必如查询一个具体学生的信息):不建立索引,(学号上)建立非聚集索引,(学号上)建立聚集索引。建立聚集索引:createclusteredindex studenton student(student_id)go建立非聚集索引:createnonclusteredindex student_i

2、ndexon student(student_id)go用查询分析器的执行步骤和结果对执行进行分析比较。select*from student where student_id=30201不建立索引建立聚集索引建立非聚集索引(2)对结果集中有多个元组的查询(例如查看某门成绩的成绩表)分类似(1)的三种情况进行执行比较。select*from student where student_id30401不建立索引:建立聚集索引:建立非聚集索引:(3)对查询条件为一个连续的围的查询(例如查看学号在某个围的学生的选课情况)分类似(1)的三种情况进行执行比较,注意系统处理的选择。select*from

3、student where student_id between31201and31415不建立索引:建立聚集索引:建立非聚集索引:(4)索引代价。在有索引和无索引的情况下插入数据(例如在选课情况表SC 上插入数据),比较插入的执行效率。insertinto student values(31710,攀,男,1993-1-1 00:00:00,计算机,3146)deletefrom student where student_id =31710无索引:建立聚集索引:建立非聚集索引:2、对相同查询功能不同查询语句的执行比较分析(1) group byselectavg(score)from sc

4、groupby course_idhaving course_id=C01selectavg(score)from scwhere course_id=C01比较其查询效率可知,没有group by的查询时间比较短,查询效率较高(2)select student_id,student_name,birthdayfrom student s1wherebirthday=(selectmax(birthday)from student s2where s1.department = s2.department)另一个:select department,max(birthday)as maxAge

5、 into tmpfrom studentgroupby department;select student_id,student_name,birthdayfrom student,tmpwhere student.birthday = tmp.maxAge and tmp.department=student.departmentdroptable tmp查询结果来看,重写的执行时间要快一些,但相差不多,如果数据库比较大的话,执行效果也许更明显(3)对下面两个查询进行比较select student_name,birthdayfrom studentwhere department!=电信

6、and birthdayall(select birthdayfrom studentwhere department =电信)另:select student_name,birthdayfrom studentwhere department!=电信and birthday(selectmax(birthday)from studentwhere department =电信)3、查询优化除了建立适当索引,对SQL 语句重写外,还有其他手段来进行查询调优,例如调整缓冲区大小,事先建立视图等。设计实现以下查询,使之运行效率最高。写出你的查询形式,以与调优过程;并说明最优情况下的运行时间。(1)

7、 查找选修了每一门课的学生。方法一:with student1(num,account)as(selectdistinct student_id,count(course_id)from scgroupby student_id)select student_namefrom student1,studentwhere student1.account=5 and student1.num=student.student_id方法二:select student_namefrom studentwherenotexists(select*from coursewherenotexists(se

8、lect*from scwhere sc.student_id=student.student_id and course.course_id=sc.course_id)尝试了两种方法,相比较而言,第二种方法的执行速度更快。(2) 查找至少选修了课程数据库原理和操作系统的学生的学号。方法一:(select student_idfrom studentviewwhere course_name=操作系统)intersect(select student_idfrom studentview where course_name=数据库原理)方法二:(select student_idfrom sc

9、,coursewhere course.course_name=操作系统and sc.course_id= course.course_id)intersect(select student_idfrom sc, coursewhere course.course_name=数据库原理and sc. course_id = course. course_id)相比较而言不使用视图的方法查询速度较快实验总结:1、 本次实验遇到的第一个问题就是如何建立索引的问题,在之前实验的基础上开始做,发现设置了主键之后,数据库会默认以主键为搜索码建立聚集索引,而且无法删除索引也不好更改,所以只好重新建表格进行实验,自己来设置聚集索引或非聚集索引2、 实验遇到的第二个问题是在进行第二步实验的时候,原表格中没有age这一属性,只有birthday这一属性,所以把age全部改为birthday进行实验。3、 实验的第三部分有点难度,想到了一种方法之后就很难再用另一种方法把它表示出来,参考了网上的一些资料,集思广益完成了查询优化的设计10 / 10

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 应用文书 > 工作计划

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁