式结构和客户服务器结构是互不相容的体系结构。正确错误
18【第01章】在模式内模式映像之间体现的独立性称为物理独立性。正确错误
19【第01章】在外模式模式映像之间体现的独立性称为逻辑独立性。正确错误
20【第01章】知识库也是一种数据库。正确错误
21【第01章】数据库管理系统是通过文件系统对数据进行管理的。正确错误
22【第02章】如果一个关系中的属性或属性组并非该关系的码,但它是另外一个关系的主码,则称其为该关系的()。A码B外码C元组D主键
4
f23【第02章】关系模型的三类完整性约束是指()。A实体完整性B参照完整性C用户定义的完整性D记录完整性24【第02章】关系代数中专门的关系运算包括()。A选择B笛卡尔积C投影D连接E除运算25【第02章】基本的关系操作是指()。A选择B投影C并D连接E差F笛卡尔积26【第02章】等值连接就是自然连接。正确错误
27【第02章】关系模型由关系数据结构、关系操作集合和关系完整性约束组成。正确错误
28【第02章】从用户角度,关系模型中数据的逻辑结构是一张二维表。正确错误
29【第02章】关系是模式在某一时刻的状态或内容,动态的、随时间不断变化的。正确错误
5
f30【第02章】关系数据库系统是支持概念模型的数据库系统。正确错误
31【第02章】关系模式是对关系的描述,是一种静态的、稳定的关系。正确错误
32【第03章】根据SQL标准,要修改表stude
t中所有学生的年龄age,使之在原值基础上减一,下面哪个语句适用?Aupdatestude
tsetage1Bupdatestude
tsetageage1Cupdateageage1fromstude
tDupdatefromstude
twhereageage133【第03章】根据SQL标准,删除表stude
t中对字段s
o的唯一性约束,应该使用下面哪条语句?Adrops
ofromtablestude
tBaltertablestude
tdrops
oCaltertablestude
tdropu
iques
oDaltertablestude
tdrops
ou
ique34【第03章】根据SQL标准,增加一个新的字段sdate到表stude
t中,该字段为可容纳7个字符的定长字符串,下面哪条语句可以正确表述?Ai
serti
tostude
tsdatechar7Baddsdatechar7tostude
tCappe
dsdatevarchar7totablestude
tDaltertablestude
taddsdatevarchar7Ealtertablestude
taddsdatechar7Faltertablestude
tmodifysdatechar735【第03章】根据SQL标准,要删除表stude
t中所有数据,但不将表stude
t的定义一起删除,下面哪个语句可以适用?Adeletefromstude
t
6
fBdeleteallfromstude
tCdeletefromstude
tDdroptablestude
t36【第03章】根据SQL标准,下面哪条语句与seler