数据库笔试题1.doc_第1页
数据库笔试题1.doc_第2页
数据库笔试题1.doc_第3页
数据库笔试题1.doc_第4页
数据库笔试题1.doc_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

数据库笔试题题一:新建学生-课程数据库的三个表:学生表:Student(Sno,Sname,Ssex,Sage,Sdept) Sno为主码;课程表:Course(Cno,Cname,Cpno,Credeit) Cno为主码;学生选修表:SC(Sno,Cno,Grade) Sno,Cno,为主码;Student学号Sno姓名Sname性别Ssex年龄Sage所在系Sdept95001李勇男20CS95002刘晨女19IS95003王敏女18MA95004张立男19IS学号Sno课程名Cname先行课Cpno学分Credit1数据库542数学23信息系统144操作系统635数据结构746数据处理27Pascal语言64Course:SC: 学号Sno课程号Cno成绩Grade9500119295001285950013889500229095002380一:查询表中的列和行1:查询全体学生的学与姓名sele sno,sname from student2:查询全体学生的姓名、学号、所在系。sele sno,sname,sdept from student 3:查询全体学生的详细记录sele * from student4:查询全体学生的姓名及出生年份sele sno,sage from student5:查询全体学生的姓名,出生年份及所在系,要用小写字母表示系名6:查询选修了课程的学生学号sele sno,cno from sc7:查询选修了课程的学生姓名sele distinct sname from student,sc where student.sno=sc.sno二:条件查询:常用的查询条件查询条件谓词比较=,=,=,!=,!,!;not+上述比较运算符确定范围Between and,Not between And,确定集合IN,not IN字符匹配Like,Not Like 空值IsNull,ISNOTNULL多重条件AND,OR1:查询计算机系全体学生的姓名sele sname from student where sdept=”CS”2:查询所有年龄在20岁以下的学生姓名及其年龄sele sname,sage from student where sage203:查询考试成绩有不及格的学生的学号sele student.sno from student,sc where student.sno=sc.sno and grade604:查询年龄在20到23间的学生的姓名,系别及年龄sele sname,sdept,sage from student where sage between 20 and 235: 查询年龄不在20到23间的学生的姓名,系别及年龄sele sname,sdept,sage from student where sage not between 20 and 236:查询信息系(IS),数学系(MA)和计算机系(CS)学生的姓名和性别sele sname,ssex from student where sdept in(IS,MA,CS) 7:查询不是信息系(IS),数学系(MA)和计算机系(CS)学生的姓名和性别sele sname,ssex from student where sdept not in(IS,MA,CS)8:查询学号为”95001”的学生详细情况sele * from student where sno=950019:查询所有姓刘的学生的姓名,学号和性别(where name like 刘%)sele sname,sno,ssex from student where sname like 刘%10:查询姓”欧阳”且命名为三个汉字的学生的姓名sele sname from student where sname like 欧阳_11:查询名字中第2个字为”阳”字的学生姓名和学号(where sname like _ _阳%)sele sname,sno from student where sname like _ _阳%12:查询所有不姓刘的学生姓名sele sname from student where sname not like 刘%13:查询DB_Design课程的课程号和学分(where cname like Db_DesignEscape)sele cno,gredit from course where cname like Db_DesignEscape14:查询以”DB_”开头,且倒数第3个字符为i的课程的详细情况(where cname like DB_%i_escape)DB_%i_escape) sele cno,gredit from course where cname like Db_%i_escape15:查询缺少成绩的学生的学号和相应的课程号sele student.sno,cno from student,sc where grade is null16:查询所有成绩的学生学号和课程号(where grade is not null)sele student.sno,cno from student,sc where grade is not null17:查询计算机系年龄在20岁以下的学生姓名sele sname from student where sdept=”CS” and sage3四:连接查询:等值与非等值的连接查询在连接查询中用来连接两个有的条件称为连接条件或连接谓词,当连接运算符号为”=”时,称为等值连接,使用如,=,=,!=连接时称非等值连接1:查询每个学生及其选修课程的情况select student.*,sc.*from student,scwhere student.sno=sc.sno自身连接连接操作在同一个表中进行连接查询2:查询每一门课的间接先修课(即先修课的先修课)select first .cno,ofrom course first ,course secondwhere o=o五:复合条件连接1:查询选修2号课程且成绩在90分以上的所有学生。Select student,snameform student, scWhere student.sno=sc.sno And So=2 and sc.grade90六:嵌套查询1:带有谓词in的子查询查询与“刘晨”在同一个系学习的学生select sno,sname,sdeptfrom student where sdept in(select sdept from studentwhere sname=”刘晨”)或:select s1.sname,s1.sdeptfrom student s1,student s2where s1.dept=s2.dept and =”刘晨”查询选修了课程名为“信息系统”的学生学号和姓名select sno,sname from studentwhere sno in( select snofrom sc where cno in (select cno from course where cname-“信息系统”)或:select sno,sname from student,sc,coursewhere student.sno=sc.sno and o=o and ame=信息系统)2:带有Any 或all谓词的子查询查询其他系中比信息系中某一学生年龄小的学生姓名和年龄select sname, sagefrom studentwhere sage any(selectsage from studentwhere sdept=isand sdeptis或用集函数:select sname, sagefrom studentwhere sage(select max(sage)from studentwhere sdept=is)and sdeptis 查询其他系中比信息系所有学生年龄都小的学生姓名及年龄select sname, sagefrom student where sageall (select sage from student where sdept=is) and sdeptis3 带有Exitst谓词的子查询查询所有选修了1号课程的学生姓名select snamefrom studentwhere exists (select * from sc where sno=student.sno and cno=1)查询没有选修1号课程的学生姓名select snameform studentwhere not exists (select * form sc where sno=stuedent.sno and cno=1)查询选修所有全部课程的学生姓名select snamefrom studentwhere not exists (select * from course where not exists (select * from sc where sno=student.sno and cno=o)查询到少选修了学生95002选修的全部课程的学生号码select distinct snofrom sc scxwhere not exists ( select * from sc scy where scy.sno=95002 and not exists ( select * from sc scz where scz.sno=scx.sno and o=o)/colorcolor=purple/colorcolor=purple/color/sizesize=4color=purple二:题一:表数据如下:FYear FNum200612006220063200742007520076按如下格式显示:年度20062007汇总6 15方案一:create table 表名(FID varchar(10), Field1 varchar(100)goinsert into 表名 select 1,Ainsert into 表名 select 1,Binsert into 表名 select 1,Cinsert into 表名 select 2,Dinsert into 表名 select 2,Einsert into 表名 select 2,Fgo-创建一个合并的函数create function f_merge(name varchar(100)returns varchar(8000)asbegindeclare str varchar(8000)set str = select str = str + , + cast(Field1 as varchar(100) from 表名 where FID = nameset str = stuff(str , 1,1,)return(str)Endgo-select * from 表名-调用自定义函数得到结果:select FID ,dbo.f_merge(FID) as tel from 表名 group by FIDdrop table 表名drop function f_merge方案二:select 汇总 as年度,2006,2007from(select fyear,fnum from T)as sourceTablepivot(sum(fnum)for fyear in (2006,2007)as pivotTable回头发现可以用SQL2005 pivot 的方法很简单题二:表A数据如下:FIDField11 A1 B1 C2 D2 E2 F要求按如下格式显示:FIDField11 A,B,C2 D,E,F如何做到?create table 表名(FID varchar(10), Field1 varchar(100)goinsert into 表名 select 1,Ainsert into 表名 select 1,Binsert into 表名 select 1,Cinsert into 表名 select 2,Dinsert into 表名 select 2,Einsert into 表名 select 2,Fgo-创建一个合并的函数create function f_merge(name varchar(100)returns varchar(8000)a

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论