- 1、本文档共15页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
WORD文档下载可编辑
专业资料精心整理
实验一 数据库查询
课程名称:
数据库原理实验
实验类型:
验证型
实验名称
数据库查询
学时
4学时
实验目的:
使学生掌握SQL Server Query Analyzer的使用方法,加深对SQL和T-SQL语言的查询语句的理解。熟练掌握表的基本查询,连接查询和嵌套查询,以及掌握数据排序和数据分组的操作方法。
实验原理:
SELECT [ALL|DISTINCT] 目标列表达式[,目标列表达式]…
FROM 表名或视图名[,表名或视图名]…
[WHERE 条件表达式]
[GROUP BY 列名1 [HAVING 条件表达式]]
[order by 列名2 [ASC|DESC]];
实验方法:
将查询需求用T-SQL语言表示;在SQL Server Query Analyzer的输入区中输入T-SQL查询语句;设置 Query Analyzer的结果区为Standard Execute(标准执行)或Execute to Grid(网格执行)方式;发布执行命令,并在结果区中查看查询结果;如果结果不正确,要进行修改,直到正确为止。
实验内容:
分别用带DISTINCT和不带DISTINCT关键字的SELELCT在student中进行查询.
带distinct:
Select class_id
from student
不带distinct:
select distinct class_id
from student
将teacher表中各教师的姓名、教工号及工资按95%发放的信息,并将工资按95%发放后的列名改为‘预发工资’
select teacher_id,teacher_name,salary*0.95
as 预发工资
from teacher
查询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.grade60
查询学分在4~8之间的学生信息.(用between..and和复合条件分别实现)
select distinct student.*
from student,course,sc
where student.student_id=sc.student_id
and sc.course_id=course.course_id
and course.credit
between 4 and 8
从student_course表中查询出学生为“g9940201”,“g9940202”的课程号、学生号以及学分,并按学分降序排列(用in实现)
select *
from sc,course
where student_id in(g9940201,g9940202)
and course.course_id=sc.course_id
order by course.credit desc
从teacher表中分别检索出姓王的教师的资料,或者姓名的第2个字是远或辉的教师的资料
select *
from teacher
where teacher_name
like 王%
or teacher_name
like_远%
or teacher_name
like _辉%
查询每个学生及其选修课情况
select student_name,course_name
from student, sc,course
where sc.student_id=student.student_id
and sc.course_id=course.course_id
以student表为主体列出每个学生的基本情况及其选课情况,如果学生没有选课,只输出其基本情况
select student.*,course.*
from student join sc
on student.student_id=sc.student_id
left join course
on course.course_id=sc.course_id
文档评论(0)