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

加入VIP,省得不是一点点
 

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

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

下载须知

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

版权提示 | 免责声明

本文(数据库1数据资料查询.doc)为本站会员(小**)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

数据库1数据资料查询.doc

1、#*实验一 数据库查询课程名称: 数据库原理实验 实验类型: 验证型实验名称 数据库查询 学时 4 学时实验目的:使学生掌握 SQL Server Query Analyzer 的使用方法,加深对 SQL 和 T-SQL语言的查询语句的理解。熟练掌握表的基本查询,连接查询和嵌套查询,以及掌握数据排序和数据分组的操作方法。实验原理:SELECT ALL|DISTINCT , FROM , WHERE GROUP BY HAVING order by ASC|DESC;实验方法:将查询需求用 T-SQL 语言表示;在 SQL Server Query Analyzer 的输入区中输入 T-SQL

2、查询语句;设置 Query Analyzer 的结果区为 Standard Execute(标准执行)或 Execute to Grid(网格执行)方式;发布执行命令,并在结果区中查看查询结果;如果结果不正确,要进行修改,直到正确为止。实验内容:1. 分别用带 DISTINCT 和不带 DISTINCT 关键字的 SELELCT 在 student 中进行查询.带 distinct:Select class_id from student不带 distinct:select distinct class_id from student2. 将 teacher 表中各教师的姓名、教工号及工资按

3、95发放的信息,并将工资按 95发放后的列名改为预发工资select teacher_id,teacher_name,salary*0.95 as 预发工资from teacher3. 查询 course 表中所有学分大于 2 并且成绩不及格的学生的信息.select distinct student.* from student,course,sc where student.student_id=sc.student_id and sc.course_id=course.course_id and course.credit2 and sc.grade80In:select * from

4、student where student_id in(select student_id from sc where course_id=dep04_s001 and grade80)exists:select * from student where exists(select student_id from sc where student.student_id=sc.student_id and course_id=dep04_s001 and grade80)10. 查询所有上计算机基础课程的学生的学号、选修课程号以及分数(分别用连接,in 和 exists 实现)连接:select

5、 sc.* from sc,course where course.course_name=计算机基础 and course.course_id=sc.course_idIn:select student_id,course_id,grade from sc where course_id in(select course_id from course where course_name=计算机基础)exists:select student_id,course_id,grade from sc where exists(select * from course where course_id

6、=sc.course_id and course_name=计算机基础)11. 查询选修了课程名为“数据库基础”的学生学号和姓名(分别用连接,in 和exists 实现)连接:select student.student_id,student.student_name from sc,student,course where course.course_name=数据库开发技术 and sc.student_id=student.student_id and course.course_id=sc.course_idIn:select student_id,student_name from

7、student where student_id in(select student_id from sc where course_id=(select course_id from course where course_name=数据库开发技术 ) )exists:select student_id,student_name from student where exists(select * from sc where sc.student_id=student.student_id and sc.course_id=(select course_id from course wher

8、e course_name=数据库开发技术 )12. 查询所有计算机系学生的学号、选修课程号以及分数(分别用连接,in 和exists 实现)连接:select sc.* from sc,department,student where department.department_name=计算机科学 and department.department_id=student.department_id and sc.student_id=student.student_idIn:select* from sc where student_id in(select student_id from student where department_id=(select department_id

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。