《数据库考试题及答案.docx》由会员分享,可在线阅读,更多相关《数据库考试题及答案.docx(42页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、习题一、 12分 用英文解释1、 DBMS 2、Data Dictionary 3、Transa2、 ction二、 10分 二、单项选择题1There may be instances where an attribute has a set of values for a specific entity. This type of attribute is said to be 【】Asingle valued attribute Bmultivalued attributesimple attribute Dcomposite attribute2In a particular bank
2、, a loan can belong to only one customer, and a customer can have several loans, then the relationship set from customer to loan is【】Aone to many Bmany to many Cmany to one Done to one 3A【】contains metadata that is, data about data.Atable Bview Cdata dictionary Dtrigger4The phrase “greater than at l
3、east one is represented in SQL by【】Aall Ball Csome 5In general, all aggregate functions except 【】ignore null values in their input collection. Asum Bavg Cmin Dcount6If a schedule S can be transformed into a schedule S by a series of swaps of non-conflicting instructions, we say that S and S are【】Ano
4、n-conflicting equivalent Bconflict equivalentCnon-conflicting serializable Dconflict serializable7The fundamental operations in the relational algebra are【】。A,-,和 B,-,和C,和 D,和8In SQL, =some is identical to in, and【】is identical to not in。AsomeB=all CallD=some9The result of true and null is【】。Anull B
5、true Cfalse Dnot null10The function sum applied on the collection 1,1,3,4,4,11 returns the value【】.A24B6 C4D11三、 10分 设有Course(课程)、Teacher(教师)、Student(研究生),其中:l Course有属性cno(课程号)、cname(课程名)和mark(学分);l Teacher有属性tno(教师编号)、tname(教师)和major(专业属性);l Student有属性sno(学号)、sname(学生)、age(年龄)、 bno(班级号)、score(总成绩)
6、属性。l Teacher与Student之间有指导论文的联系,用Supervise表示,每位教师可指导多名研究生,每名研究生有且只能有一位指导教师;l Teacher与Course之间有讲授的联系,用Teach表示,每位教师可以教授多门课程,每门课程可同时由多位教师开设。试画出E-R图。四、 12分 题设与第三题相同,试根据你所画的E-R图,设计出关系数据库,并指出每个关系中的主键和外键。五、 8分 题设与第三题相同,试用关系代数表达:1检索编号为t01的老师的 2检索班级号为b01或者年龄大于21岁所有学生的六、 12分题设与第三题相同。使用SQL表达:1建立表结构Course(课程)、Te
7、acher(教师)、Student(研究生)其中要求age大于零;定义必要的主键和外键。 2将学号为a01,为zhang,年龄为22的学生信息参加到Student表中3检索专业为电脑的老师的和编号, 并按编号由大到小排列 。4将学号以a01开头的学生信息删除。5检索比b01班所有学生的总成绩都高的学生的,去掉重复的。 6检索张山老师所教的学生的平均总成绩(假设不存在教师重名现象)。七、 12分 设有属于1NF的关系模式R=A, B, C, D, E,R上的函数依赖集F= BCAD,ADEB,EC 。1. R是否属于3NF?为什么?2. R是否属于BCNF?为什么?八、12分设有属于1NF的关系
8、模式R=A, B, C, D, E,R上的函数依赖集F包含如下函数依赖F=ABC, DA, EC, BCD, BA 1、求X=BD关于F的闭包X+.2、求F的一个正那么覆盖.3、求满足3NF分解的关系模式九、12分 设有如下调度S。T1T2T3read(B)write(B)read(B)read(A)write(B)write(A)read(B)write(B)read(A)write(A)read(A)write(A)1. 判别S是否为冲突可串行化调度?2. 如果是冲突可串行化调度,那么给出与S冲突等价的串行调度。习题答案八、 12分 用英文解释(每题3分)3、 DBMS: A databa
9、se management system consists of a collection of interrelated data and a collection of programs to access those data.4、 Data dictionary: A data dictionary is a file that contains metadata, that is data about data.5、 Transaction: The transaction is a unit of program execution that accesses and possib
10、ly updates various data items.6、九、 10分 单项选择题 (每题1分)1【B】2【A】3【C】 4【D】5【D】6【B】7【A】8【C】9【A】10【A】十、 10分E-R图:CourseStudentTeacherTeachSupervise(1) 正确描述出Teacher、Course、Teach、Supervise、Student五个实体集及联系集及其相关属性 5分(2) 描述出Teacher和Student之间为1对多关系 -1分(3) 描述出Teacher和Course之间为多对多关系 -1分(4) 矩形、菱形等符号表示正确 -3分十一、 12分Cou
11、rse(cno, cname, mark) 主键:cno 2分Teacher (tno, tname, major) 主键:tno 2分Student (sno, sname, age, bno, tno,score) 主键:sno 外键:tno-4分 其中主键和外键各占1分Teach(tno, cno) 主键:tno, cno 外键:tno和cno 4分 其中主键和外键各占1.5分十二、 8分tname(stno=t01(Teacher) 4分sname(sage21 or sbno=b01(Student) -4分十三、 12分1create table Course (cno char(
12、4),cname char(10),mark integer,primary key(cno) -1分create table Teacher (tno char(10),tname char(4),major char(8)primary key(tno) 1分create table Student (sno char(10),sname char(10),age integer,tno char(10),bno char(10),score integer,primary key(sno), foreign key(tno) references Teacher (tno),check
13、(age0) -1分create table Teach(tno char(10),cno char(4),primary key(tno,cno),foreign key(tno) references Teacher (tno),foreign key(cno) references Course (cno) 1分2insert into Student(sno,sname,age) values (a01, zhang, 22)2分3Select tname, tno from Teacher where major=电脑order by tno desc -1.5分 order by语
14、句正确占0.5分4Delete from Student Where sno like a01% -1.5分 like语句表达正确占0.5分5select distinct sname from Studentwhere score(select max(score) from studentwhere bno=b01) -1.5分6 Select avg(score) From studentwhere tno=(Select tno From Teacher Where tname=张山) -1.5分 十四、 12分BC, AD, BE都是候选码,-4分1 所有属性都是某个候选码的属性,显
15、然是3NF。-4分2 EC非平凡依赖, 而E不是R的一个超码,R不属于BCNF -4分十五、 12分1X+=ABDC 1.5分2正那么覆盖:DA EC BCD -4.5分 每个依赖1.5分3D,AE,CB,C,D B,E-6分 每个模式1.5分十六、 12分1. S 为冲突可串行化调度。-4分2. 冲突等价的串行调度为 -8分 十七、 12分 用英文解释:7、 Transaction 8、 DBMS9、 Data model十八、 20分 选择题:1. 一个关系中的主键。A. 不可能多于一个 B. 不可以作为其他关系的外部键C. 可以取空值 D. 不可以是属性组合2. 在数据库中,产生数据不一
16、致的根本原因是。A. 数据存储量太大B. 数据冗余C. 未对数据进行完整性控制D. 没有严格保护数据3. 事务在执行时,所遵循的“要么所有操作全部发生,要么由于出错而全不发生这是事务的性质.A. 隔离性 B. 持久性C. 原子性 D. 一致性4. 是数据抽象的最低层次,描述数据实际上是怎样存储的。A. 物理层 B. 逻辑层C. 视图层 D. 子模式层5. 对数据库系统进行集中控制的人称为。A. 操作系统管理员 B. 数据库管理员C. 数据库操作员 D. 程序员6. 中的一个实体至多同中的一个实体相联系,而中的一个实体可以同中任意数目的实体相联系,那么和之间的映射基数为。A. 一对多 B. 一对
17、一C. 多对一 D. 多对多7. 提供定义关系模式、删除关系以及修改关系模式的命令。A. 数据定义语言 B. 视图定义语言C. 数据操纵语言 D. 动态SQL语言8. 事务不具有的性质有。A. 原子性 B. 可恢复性C. 隔离性 D. 持久性9. 计算过程中不忽略Null值的聚集函数包括。A. avg ( ) B. max ( )C. min ( ) D. count ( )10. 假设关系person包含元组John, Smith, Jeffrey, Mary, Valeria,关系customer包含元组John, Jeffrey, Tom。那么person和customer的集合差运算结
18、果应该包含个元组。A. 3 B. 2 C. 1 D. 5三、8分 请设计一个体育比赛技术统计数据库。数据库对每个运发动保存个人记录,包括:、性别、年龄、身份证号。对每项比赛存有:比赛编号、比赛时间、地点、比分、参加比赛的球队名称。还应记录上场队员在每场比赛的统计数据,包括:进球数、助攻次数。画出相应的E-R图,并加以必要的说明。四、8分 根据下面的E-R图设计关系数据库,要求指出相应的主键和外键。五、12分 考虑以下列图所示职工数据库。为下面每个查询语句写出SQL表达式。employee(employee-name, street, city) works(employee-name, com
19、pany-name, salary) company(company-name, city). 找出不为First Bank Corporation工作的所有职工的名字.修改数据库,使得Jones现在居住在Newtown市找出各个公司职工的平均工资,并按照公司名称排序逆序。d删除works关系中的所有元组。六、10分 关于关系模式R=(A, B, C, D, E)的函数依赖集F如下所示, ABC CDE BD EA. 计算正那么覆盖FC .计算闭包(AB)+七、10分 设有属于1NF的关系模式R=A, B, C, D, E,R上的函数依赖集F= ABC,CDE,BD,EA 。下面是R的两个分解
20、1R1=( A, B, C )和R2(A, D, E )2 R1=( A, B, C )和R2 ( C, D, E )试判别,是否为无损连接分解,为什么?八、10分 设有属于1NF的关系模式R=A, B, C, D, E,R上的函数依赖集F= ABC, CDE, BD, AD 。求满足3NF分解的关系模式。九、10分 考虑如下所示的优先图,相应的调度是冲突可串行化的吗?如果是,请给出串行化调度次序。参考答案十九、 12分 用英文解释:10、 Transaction:A transaction is a unit of program execution that accesses and po
21、ssibly updates various data items.11、 DBMS:A database management system consists of a collection of interrelated data and a collection of programs to access that data.12、 Data model:A collection of conceptual tools for describing data, data relationships, data semantics, and data constraints.二十、 20分
22、 选择题:A. B.C.A.B.C.A.B.D.A三、8分 请设计一个体育比赛技术统计数据库。数据库对每个运发动保存个人记录,包括:、性别、年龄、身份证号。对每项比赛存有:比赛编号、比赛时间、地点、比分、参加比赛的球队名称。还应记录上场队员在每场比赛的统计数据,包括:进球数、助攻次数。画出相应的E-R图,并加以必要的说明。四、8分 根据下面的E-R图设计关系数据库,要求指出相应的主键和外键。account (account_number, balance, branch_name) primary key (account_number) foreign key (branch_name)br
23、anch (branch_name, branch_city, assets) primary key (branch_name)customer (customer_name, customer_city) primary key (customer_name)depositor (account_number, customer_name) primary key (account_number, customer_name)foreign key (account_number)foreign key (customer_name)五、12分 考虑以下列图所示职工数据库。为下面每个查询语
24、句写出SQL表达式。employee(employee-name, street, city) works(employee-name, company-name, salary) company(company-name, city). 找出不为First Bank Corporation工作的所有职工的名字 select employee-name from works where company-name != First Bank Corporation .修改数据库,使得Jones现在居住在Newtown市 update employee set city= Newtown wher
25、e employee-name= Jones找出各个公司职工的平均工资,并按照公司名称排序逆序。 Select company-name, avg (salary) From works Group by company-name Order by company-name descd删除works关系中的所有元组。 Delete from works六、10分 关于关系模式R=(A, B, C, D, E)的函数依赖集F如下所示, ABC CDE BD EA. 计算正那么覆盖FC .计算闭包(AB)+答:FC= ABC,CDE,BD,EA (AB)+=ABCDE七、10分 设有属于1NF的关
26、系模式R=A, B, C, D, E,R上的函数依赖集F= ABC,CDE,BD,EA 。下面是R的两个分解1R1=( A, B, C )和R2(A, D, E )2 R1=( A, B, C )和R2 ( C, D, E )试判别,是否为无损连接分解,为什么?答:是无损连接分解, 不是无损连接分解八、10分 设有属于1NF的关系模式R=A, B, C, D, E,R上的函数依赖集F= ABC, CDE, BD, AD 。求满足3NF分解的关系模式。答:R1=ABC, R2=CDE, R3=BD九、10分 考虑如下所示的优先图,相应的调度是冲突可串行化的吗?如果是,请给出串行化调度次序。T1,
27、T2,T6,T3,T4,T5习题6二十一、 12分 用英文解释:13、 View14、 DBMS15、 Query Language二十二、 10分 填空题在以下各小题中的括号局部省略了数据库系统的术语,在答题纸上写好小题号,并在其后用英文填写相应的术语:1. The collection of information stored in the database at a particular moment is called an ( ) of the database.2. A ( ) is a language that enables users to access or manip
28、ulate data as organized by the appropriate data model.3. A person who has such central control over the system is called a ( ).4. Application programs are said to exhibit ( ) if they do not depend on the physical schema, and thus need not be rewritten if the physical schema changes.5. A ( ) is a col
29、lection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints.6. The overall design of the database is called the ( ).7. An ( ) is a set of the same type that share the same properties, or attributes.8. We choose a minimal superkey for each entity s
30、et from among its superkeys; the minimal superkey is termed the entity sets ( ).9. Any relation that is not part of the logical model, but is made visible to a user as a virtual relation, is called a ( ).10. SQL allows the use of ( ) values to indicate absence of information about the value of an at
31、tribute.三、8分 请设计一个图书馆数据库,此数据库中对每个借阅者保存读者记录,包括:读者号、地址、性别、年龄、单位。对每本书存有:书号、书名、作者、出版社。同一书名的书有多本,以便被多个读者借阅。对每本被借出的书应记录借出日期和应还日期。画出相应的E-R图,并加以必要的说明。四、8分 根据下面的E-R图设计关系数据库,要求指出相应的主键和外键。五、12分 考虑以下列图所示职工数据库。为下面每个查询语句写出SQL表达式。employee(employee-name, street, city) works(employee-name, company-name, salary) comp
32、any(company-name, city). 找出所有为First Bank Corporation工作的职工的名字.修改数据库,使得Jones现在居住在Newtown市找出各个公司职工的平均工资,并按照公司名称排序逆序。d 为First Bank Corporation所有职工增加10%的薪水。六、10分 设有关系模式R=A, B, C, D, E,R上的函数依赖集F = AB,CDE,AC。给出R的一个无损连接的BCNF分解。七、10分 设有关系模式R=A, B, C, D, E,R上的函数依赖集F = ABC, CDE,BD,EA 。计算(AB)+?八、10分 设有属于1NF的关系模
33、式R=A, B, C, D, E,R上的函数依赖集F = ABC, CDE, AD。求满足3NF分解的关系模式。九、10分 如下所示的调度是冲突可串行化的吗?如果是,请给出串行化调度次序。T1T2read(B)write(B)read(B)read(A)write(B)write(A)read(A)write(A)参考答案二十三、 12分 用英文解释:16、 View views are virtual relations defined by a query language17、 DBMS A database management system consists of a collect
34、ion of interrelated data and a collection of programs to access that data.18、 Query Language A query language in which a user requests information from the database.二十四、 10分 填空题在以下各小题中的括号局部省略了数据库系统的术语,在答题纸上写好小题号,并在其后用英文填写相应的术语:1. The collection of information stored in the database at a particular m
35、oment is called an ( instance ) of the database.2. A ( DML ) is a language that enables users to access or manipulate data as organized by the appropriate data model.3. A person who has such central control over the system is called a ( DBA ).4. Application programs are said to exhibit (physical dat
36、a independence ) if they do not depend on the physical schema, and thus need not be rewritten if the physical schema changes.5. A (Data Model) is a collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints.6. The overall design of the databas
37、e is called the (database schema ).7. An (entity ) is a set of the same type that share the same properties, or attributes.8. We choose a minimal superkey for each entity set from among its superkeys; the minimal superkey is termed the entity sets ( candidate key ).9. Any relation that is not part o
38、f the logical model, but is made visible to a user as a virtual relation, is called a (view ).10. SQL allows the use of (null) values to indicate absence of information about the value of an attribute.三、8分 请设计一个图书馆数据库,此数据库中对每个借阅者保存读者记录,包括:读者号、地址、性别、年龄、单位。对每本书存有:书号、书名、作者、出版社。对每本被借出的书应记录借出日期和应还日期。画出相应
39、的E-R图,并加以必要的说明。四、8分 根据下面的E-R图设计关系数据库,要求指出相应的主键和外键。account (account_number, balance, branch_name) primary key (account_number) foreign key (branch_name)branch (branch_name, branch_city, assets) primary key (branch_name)customer (customer_name, customer_city) primary key (customer_name)depositor (acco
40、unt_number, customer_name) primary key (account_number, customer_name)foreign key (account_number)foreign key (customer_name)五、12分 考虑以下列图所示职工数据库。为下面每个查询语句写出SQL表达式。employee(employee-name, street, city) works(employee-name, company-name, salary) company(company-name, city). 找出所有为First Bank Corporation
41、工作的职工的名字select employee-name from works where company-name= First Bank Corporation .修改数据库,使得Jones现在居住在Newtown市update employee set city= Newtown where employee-name= Jones找出各个公司职工的平均工资,并按照公司名称排序逆序。Select company-name, avg (salary) From works Group by company-name Order by company-name descd 为First Ba
42、nk Corporation所有职工增加10%的薪水。 Update works Set salary=salary*1.1 where company-name= First Bank Corporation六、10分 设有关系模式R=A, B, C, D, E,R上的函数依赖集F = AB,CDE,AC。给出R的一个无损连接的BCNF分解。 R1=AB R2=CDE R3=AC R4=AD七、10分 设有关系模式R=A, B, C, D, E,R上的函数依赖集F = ABC, CDE,BD,EA 。计算(AB)+? (AB)+=ABCDE八、10分 设有属于1NF的关系模式R=A, B, C, D, E,R上的函数依赖集F = ABC, CDE, AD。求满足3NF分解的关系模式。 R1=ABC R2=CDE 九、10分 如下所示的调度是冲突可串行化的吗?如果是,请给出串行化调度次序。T1T2read(B)write(B)read(B)read(A)write(B)write(A)read(A)write(A)1. 是2. T1,T2习题1