数据库在在线作业第2次(3-4).doc_第1页
数据库在在线作业第2次(3-4).doc_第2页
数据库在在线作业第2次(3-4).doc_第3页
数据库在在线作业第2次(3-4).doc_第4页
数据库在在线作业第2次(3-4).doc_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

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

文档简介

窗体顶端您的本次作业分数为:100分 单选题 1.在SQL语言中授权的操作是通过()语句实现的。A CREATE B REVOKE C GRANT D INSERT 正确答案:C单选题 2.在SQL语言中回收权限的操作是通过()语句实现的。A CREATE B REVOKE C GRANT D INSERT 正确答案:B单选题 3.下列SQL语句命令,属于DDL语言的是()。A SELECT B CREATE C GRANT D DELETE 正确答案:B单选题 4.根据SQL标准,创建一个表,应该使用下面哪个语句?A CREATE TABLE B CREATE INDEX C CREATE VIEW D CREATE DATABASE 正确答案:A单选题 5.根据SQL标准,删除一个表,应该使用下面哪个语句?A DELETE TABLE B DROP TABLE C DELETE VIEW D DROP DATABASE 正确答案:B单选题 6.根据SQL标准,修改表的数据结构,下面哪种语句适用?A UPDATE B ALTER C CHANGE D SHIFT 正确答案:B单选题 7.根据SQL标准,创建一个视图,应该使用下面哪个语句?A CREATE TABLE B CREATE INDEX C CREATE VIEW D CREATE DATABASE 正确答案:C单选题 8.根据SQL标准,删除一个表中的记录,下面哪个语句适用?A DROP TABLE B DROP C DELETE D ERASE 正确答案:C单选题 9.根据SQL标准,下面哪句语句能够找出年龄最小的同学?其中age为学生表student中的年龄字段,sno为学生的学号。A select max(age) from student B select sno from student where age = max(age) C select sno from student having age = max(age) D select sno from student a where a.age = (select min(b.age) from student b) 正确答案:D单选题 10.根据SQL标准,要创建唯一索引该使用下面哪种语句?A CREATE UNIQUE INDEX B CREATE CLUSTER INDEX C CREATE ONLY INDEX D CREATE PRIMARY INDEX 正确答案:A单选题 11.根据SQL标准,要修改表student中所有学生的年龄age,使之在原值基础上减一,下面哪个语句适用?A update student set age = 1 B update student set age = age - 1 C update age = age -1 from student D update from student where age = age -1 正确答案:B单选题 12.根据SQL标准,要删除表student中所有数据,但不将表student的定义一起删除,下面哪个语句可以适用?A delete from student B delete all from student C delete * from student D drop table student 正确答案:A单选题 13.根据SQL标准,要查询表student中平均年龄age小于21的所在系dept及其平均年龄值,下面哪条语句适用?A select dept,avg(age) from student where avg(age) 21 B select dept,avg(age) from student group by dept having avg(age) 21 C select dept,avg(age) from student having avg(age) 21 D select dept,avg(age) from student group by dept where avg(age) 21 正确答案:B单选题 14.根据SQL标准,要查询表student中所有年龄age小于所有学生的平均年龄的记录,下面哪条语句适用?A select * from student where age avg(age) B select * from student having age avg(age) C select * from student a where a.age = a.age 正确答案:C单选题 15.根据SQL标准,增加一条记录到表student,学号sno是11301,姓名sname是“snoopy”,年龄age是20。其中student表中包括学号、姓名、年龄、籍贯、系别等属性,并且属性除sno外皆可取空值。下面哪条是正确的?A insert into student values(sno=11301, sname=snoopy, age =20) B insert into student(sno,sname,age) values(11301,snoopy,20) C insert into student set sno=11301, sname=snoopy, age = 20 D insert into student values (11301, snoopy, 20) 正确答案:B单选题 16.根据SQL标准,下面哪条语句与select min(age) from student等效?A select age from student where age = min(age) B select distinct age from student where age = all min(age) C select distinct a.age from student a where a.age = any (select distinctb.age from student b) D select distinct a.age from student a where a.age = all (select distinct b.age from student b) 正确答案:D单选题 17.根据SQL标准,创建一个视图abc,通过该视图只能对表student中系dept为IS的记录进行更新操作。下面哪条语句适用?A create view abc as select * from student where dept=IS B create view abc as select * from student where dept=IS with check option C create view abc as student where dept=IS D create view abc as select dept=IS from student 正确答案:B单选题 18.根据SQL标准,查询表student(sno,sname,sex,dept)中所有学生的选修课程数,其中选修记录在表SC(sno,cno,grade)中,两表中sno为关联字段。下面哪条语句合适?A select sno,count(cno) from SC B select sno,count(cno) from student C select a.sno,count(cno) from student a left outer join SC D select a.sno,count(cno) from SC left outer join student a 正确答案:C单选题 19.根据SQL标准,删除索引应该选用下面哪个语句?A DELETE INDEX B DROP INDEX C DELETE VIEW D DROP VIEW 正确答案:B单选题 20.根据SQL标准,增加一个新的字段sdate到表student中,该字段为可容纳7个字符的定长字符串,下面哪条语句可以正确表述?A insert into student sdate char(7) B add sdate char(7) to student C append sdate varchar(7) to table student D alter table student add sdate varchar(7) E alter table student add sdate char(7) F alter table student modify sdate char(7) 正确答案:E单选题 21.根据SQL标准,把表SC1中的记录复制到另一个表SC2中,其中SC1表和SC2表的字段定义完全一样。下面哪条语句适用?A copy * from SC1 to SC2 B copy * from SC2 to SC1 C insert into SC2 select * from SC1 D insert into SC1 select * from SC2 正确答案:C单选题 22.根据SQL标准,删除表student中对字段sno的唯一性约束,应该使用下面哪条语句? A drop sno from table student B alter table student drop sno C alter table student drop unique(sno) D alter table student drop sno unique 正确答案:C多选题 23.下面哪些是SQL提供的进行数据操纵的核心动词。 A create B insert C update D select E delete F grant 正确答案:BCE多选题 24.以下哪几项是属于CC标准的组成部分。 A 简介和一般模型 B 安全功能要求 C 安全保证要求 D 安全策略 正确答案:ABC多选题 25.关于SQL语言的主要特点: A SQL是一种一体化的语言,它包括了数据定义、数据查询、数据操纵和数据控制等方面的功能,可以完成数据库活动的全部工作。 B SQL语言是一种高度非过程化的语言。 C SQL语言非常简洁。 D SQL语言可以直接以命令方式交互使用,也可以嵌入到程序设计语言中以程序方式使用。 正确答案:ABCD判断题 26.SQL是Structured Query Language( 结构化查询语言 )的缩写。 正确 错误 正确答案: 对 判断题 27.用SQL语句创建表,使用语句 CREATE TABLE 。对列的约束主要有NOT NULL ,UNIQUE,PRIMARY KEY ,FOREIGN KEY 等。定义表的删除与更新操作的完整性约束,主要有四种模式:NO ACTION ,CASCADE ,SET NULL ,SET DEFAULT 。检查列的取值范围可

温馨提示

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

评论

0/150

提交评论