数据库实验报告Transact-SQL语句的高级应用实验报告.pdf

上传人:33****7 文档编号:27886895 上传时间:2022-07-26 格式:PDF 页数:12 大小:1.16MB
返回 下载 相关 举报
数据库实验报告Transact-SQL语句的高级应用实验报告.pdf_第1页
第1页 / 共12页
数据库实验报告Transact-SQL语句的高级应用实验报告.pdf_第2页
第2页 / 共12页
点击查看更多>>
资源描述

《数据库实验报告Transact-SQL语句的高级应用实验报告.pdf》由会员分享,可在线阅读,更多相关《数据库实验报告Transact-SQL语句的高级应用实验报告.pdf(12页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、. .-优选西北师 X 大学计算机科学与工程学院学生实验报告学号专业计算机科学与技术XX 课程名称数据库应用与开发班级实验名称Transact-SQL语句的高级应用课程类型专业限选课实验目的:利用 SELECT 语句中更复杂的特性, 可以使用多个表进展查询并获取结果。在实际应用过程中, SELECT 语句查询通常是由多表连接、子查询等有机地组合而形成的,同时还可以处理大型数据块,使用游标处理结果集。实验内容:1、查询每一位教授的教师号、XX 和讲授的课程名称SQL 代码:use teaching go select teacherno as 教授号 , tname as XX , major

2、as 课程名称 from teacher where prof=教授 go 实验结果:. .-优选2、利用现有的表生成新表,新表中包括学号、学生XX、课程名称和总评成绩其中:总评成绩 =final*0.9+usually*0.1 。SQL 代码:use teaching go . .-优选select student .studentno as 学号, sname as 学生XX, ame as 课程名称 ,0.9*final+0.1*usually as 总评成绩 into new_stuscore from student , score , course where student .s

3、tudentno = score .studentno and course .courseno = score .courseno go select * from new_stuscore 实验结果:. .-优选3、分别统计每个学生期末成绩高于75分的课程门数SQL 代码:use teaching go select student .studentno ,student.sname ,count(*)as 课程门数 from score ,student where final 75 and student .studentno = score.studentno groupby stu

4、dent.studentno ,student.sname 实验结果:. .-优选4、输出 student表中年龄大于女生平均年龄的男生的所有信息SQL 代码:use teaching go select * from student wheresex =男anddatediff(year ,birthday,getdate ()( . .-优选select avg(datediff(year ,birthday,getdate () from student where sex =女 ) 实验结果:5、计算每个学生获得的学分。SQL 代码:use teaching go select stu

5、dent .studentno, student .sname ,sum(credit) . .-优选from student innerjoin score on student.studentno =score .studentno innerjoin course on course .courseno = score .courseno where score .final 60 groupby student.studentno , student.sname go 实验结果:6、获取入学时间在2008 2009年的所有学生中入学年龄小于19岁的学号、 XX 及所修课程的课程名称。.

6、 .-优选SQL 代码:use teaching go select student .studentno, student .sname , course .ame from student innerjoin score on student.studentno = score .studentno innerjoin course on course .courseno = score .courseno where (substring (student .studentno,1,2)=08 and(datediff(year ,birthday,2008-01-01 ) 19) or

7、(substring (student .studentno ,1,2)=09 and(datediff(year ,birthday,2009-01-01 ) 19) go 实验结果:. .-优选7、查询 09级学生的学号、 XX 、课程名及学分。SQL 代码:use teaching go select student .studentno, student .sname , course .ame ,course .credit from student innerjoin score on student.studentno = score .studentno innerjoin c

8、ourse on course .courseno = score .courseno where (substring (student .studentno,1,2)=09) . .-优选go 实验结果:8、查询选修课程少于3 门或期末成绩含有60分以下课程的学生学号、XX、和. SQL 代码:. .-优选use teaching go select studentno ,count(*)as countNUM into count1 from score groupby studentno go select student .syudentno ,sname ,phone,Email from student innerjoin score on student.studentno =score .studentno innerjoin count1 on student.studentno =count1.studentno where score .final60 and countNUM3 go 实验结果:. .-优选实验总结:通过本次实验掌握使用多个表进展查询并获取结果,同时根本掌握处理大型数据块,使用游标处理结果集。实验评语:实验成绩教师签字

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

当前位置:首页 > 应用文书 > 工作总结

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

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