版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、数据库试验报告(四)1.简洁查询:姓名:学号:班级 : 1 查询“ 数据库开发技术” 课程的学分;SQL语句:select credit from course where course_name =SQL Server数据库开发技术 ; 或者模糊查询:select credit from course where course_name like%数据库开发技术 ; 执行结果:2 查询选修了课程编号为“按降序输出;SQL语句:select student_id , grade from student_course where course_id =dep04_s003order by gr
2、ade desc; 执行结果:dep04_s004” 的同学的学号和成果,并将成果3 查询学号为“g9940205” 的同学选修的课程编号和成果;SQL语句:select course_id , grade from student_course where student_id =g9940205 ; 执行结果:4 查询选修了课程编号为“dep04_s001” 且成果高于 85 分的同学的学号和成果;SQL语句:select student_id , grade from student_course where course_id=dep04_s001and grade 85 ; 执行结果
3、:2.在多表连接的查询试验中,用Transact SQL 语句完成以下查询操作:1 查询选修了课程编号为“dep04_s002” 且成果高于85 分的同学的学号、姓名和成果;SQL语句:select student . student_id , student_name , grade from student , student_course where student . student_id =student_course . student_id and student_course . course_id =dep04_s002and student_course . grade 8
4、5 ; 执行结果:2 查询全部同学的学号、姓名、选修的课程名称和成果;SQL语句:select student . student_id , student_name , course_name, grade from student , course , student_course where student . student_id =student_course . student_id and student_course . course_id =course . course_id ; 执行结果:3 查询林红同学选修的课程名称、 学分和成果; 考试成果 60 有学分,否就无学分;
5、 SQL语句:select course_name , student_course . credit , grade from student , student_course , course where student_name = 林红 and student . student_id =student_course . student_id and student_course . course_id =course . course_id ;3.在复杂查询试验中,用Transact SQL 语句完成以下查询操作:1 查询至少选修了三门课程的同学的学号和姓名;SQL语句:select
6、 student . student_id , student_name from student , student_course where student . student_id =student_course . student_id group by student . student_id , student_name having count student_course . course_id = 3; 执行结果:2 查询选修课程号为“SQL语句:select avg grade from student_course dep04_b001” 的同学的平均成果;where c
7、ourse_id =dep04_b001 ; 执行结果:3 查询全部同学的学号和他选修课程的最高成果,要求他的选修课程中没有成果为空的;SQL语句:select student_id , max grade from student_course where exists select grade from student_course group by student_id ; 执行结果:4 查询严为老师 2022/2022 学年教的软件开发技术课程的最高成果及此学生的学号、姓名、班级;SQL语句:select student . student_id , student_name , st
8、udent . class_id , grade from teacher_course_class , teacher , course , student , student_course where teacher_course_class . teacher_id = teacher . teacher_id and teacher . teacher_name = 严为 and teacher_course_class . course_id = course . course_id and course . course_name = 软件开发技术 and teacher_cour
9、se_class . course_id = student_course . course_id and student_course . student_id = student . student_id and teacher_course_class . school_year = 2022/2022 and student_course. grade =allselect grade course . course_id andfrom student_course, course where student_course. course_id = course. course_na
10、me = 软件开发技术 ; 执行结果:5 查询数据库开发技术课程用过的教材名称,作者和出版社;SQL语句:select book_name , author , publish_company from book , course where course . book_id =book. book_id and course_name =SQL SERVER数据库开发技术 ; 执行结果:6 查询运算机科学系讲授过数据库开发技术的老师姓名和职称;SQL语句:select teacher_name , profession from teacher , course , teacher_cour
11、se_class , department where teacher . teacher_id = teacher_course_class . teacher_id and course . course_id = teacher_course_class . course_id and department . department_id = teacher . department_id and department . department_name = 运算机科学 and course . course_name = SQL Server 数据库开发技术 ; 执行结果:4. 在嵌套
12、查询试验中, 用 Transact SQL语句完成以下查询操作, 要求写嵌套查询语句:1 查询选修了软件开发技术的同学的学号和姓名;SQL语句:select student_id , student_name from student where student_id in select student_id from student_course where course_id in select course_id from course where course_name = 软件开发技术 ; 执行结果:2 查询没有选修软件开发技术的同学的学号和姓名;SQL语句:select stude
13、nt_id , student_name from student where notexistsselect student_id from student_course where course_id in select course_id from course where course_name = 软件开发技术 ; 执行结果:3 查询至少选修了学号为 “ g9940201” 的同学所选修的全部课程的同学的学号和姓名;SQL语句:select student_id , student_name from student where not exists select *from stu
14、dent_course student_course1 where student_course1. student_id = g9940201and notexists select*from student_course student_course2 where student . student_id =student_course2 . student_id and student_course2 . course_id = student_course1 . course_id ; 执行结果:5. 建立如下视图:同学选修课程信息视图,包括以下内容:对(1)(2)内容用企业治理器和S
15、QL语句方式分别完成;1)同学学号、姓名、所在系、授课老师姓名、课程名称、课程教材名称、出版社、学分、选课成果SQL语句:Create viewview1 student_id , student_name , department_name , teacher_name , course_name, book_name , publish_name , credit , grade as select distinctstudent . student_id , student . student_name , department_name , teacher_name ,course_n
16、ame, book_name, publish_company , student_course . credit , student_course . grade fromstudent , course , department , student_course, teacher , teacher_course_class, book, class where student . student_id =student_course . student_id and student . class_id =class . class_id and class . department_i
17、d =department . department_id and student_course. course_id =course . course_id and course . book_id =book. book_id and teacher. teacher_id=teacher_course_class. teacher_id and teacher_course_class企业治理器:. course_id =course . course_id Step1:右键视图,挑选新建视图;Step2:添加涉及到的表;Step3:挑选需要显示的列;Step4:右键视图 view1,挑
18、选查看前 1000行;执行结果:2)修改以上视图,增加同学所在班级信息;SQL语句:alter viewview1 student_id , student_name , department_name , teacher_name , course_name, book_name, publish_name , credit , grade , class_id AS SELECT DISTINCTstudent . student_id , student_name , department_name , teacher_name , course_name , book_name, publish_company , student_course . credit , student_course . grade , student . class_id FROMstudent , student_course, course , teacher , teacher_course_class, book, department , class WHERE student . student_id =student_course . student_id and student . class_id =class . cl
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024品牌招商代理服务协议模板版B版
- 2024年幼儿园教职工劳动协议模板版B版
- 2024年企业信息化系统集成实施与运维合同
- 2024年可再生能源开发合同
- 2024年度健身会所承包运营合同样本版
- 湖南省2023-2024学年高二物理上学期第二次联考试题含解析
- 2024年度农业设备租赁协议样本版
- 2024年实验技术服务协议样本版B版
- 2024年城市供水与排水合同
- 2024年厂房转让及维修责任合同
- 企业内部控制审计工作底稿编制指南
- 德云社相声台词剧本
- 厂房彩钢墙面板拆除工程施工组织方案
- CSP2000系列技术说明书上册(第四版)学习资料
- 浅析先张法预应力混凝土空心板梁反拱度理论计算(市政工程协会杂志投稿)
- 真空断路器必须知道的基本常识(国标和IEC)
- 水运工程检验批表格
- 口袋妖怪XY精灵分布表
- 危险化学品生产企业主要负责人安全培训测试补考试卷
- 美国标准大气参数表(1976)-负5km到100万米
- 筛分系统安装施工组织设计(共47页)
评论
0/150
提交评论