数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学_第1页
数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学_第2页
数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学_第3页
数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学_第4页
数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学_第5页
免费预览已结束,剩余6页可下载查看

下载本文档

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

文档简介

数据库原理与应用知到智慧树章节测试课后答案2024年秋上海中侨职业技术大学模块一单元测试

关系数据库是若干()的集合。

A:视图B:列C:表(关系)D:行

答案:表(关系)()是位于用户和操作系统之间的一层数据管理软件,数据库在建立、使用和维护时由其统一管理、统一控制。

A:DBAB:DBC:DBSD:DBMS

答案:DBMS在SQLServer中,不是对象的是()

A:用户B:数据C:表D:数据类型

答案:数据类型SQL

SERVER数据库类型有很多种,其中用来存储整数的叫做整数型数据类型,下列不是整数型数据类型的是(

)

A:smallintB:bigintC:intD:char

答案:char在下面职工信息表和部门信息表中,职工号和部门号分别是主关键字。职工表(职工号、职工名、部门号、职务、工资)部门表(部门号、部门名、部门人数据、工资总数)在这两个表中,只有一个外关键字,是()

A:职工信息表的“职工号”B:部门表的“部门名”C:部门表的“部门号”D:职工信息表的“部门号”

答案:职工信息表的“部门号”选择要执行操作的数据库,应该使用()命令

A:SP_EXECB:EXECC:GOD:USE

答案:USE目前()数据库已经逐步淘汰了网状数据库和层次数据库,成为当今最为流行的商用数据库系统

A:分布B:sqlC:关系D:面向对象

答案:关系长期存储在计算机内的有组织,可共享的数据集合是()

A:数据库系统B:数据库管理系统C:文件组织D:数据库

答案:数据库数据库系统不仅包括数据库本身,还要包括相应的硬件,软件和()

A:相关的计算机系统B:各类相关人员C:数据库管理系统D:数据库应用系统

答案:各类相关人员考生到相关网站查看各高校历年的录取分数来辅助决策报考学校和专业,这个过程中考生获得________服务。

A:数字B:咨询C:字符D:信息

答案:信息

模块二单元测试

SQLServer的字符型系统数据类型主要包括()。

A:char、varchar、textB:int、money、char

C:datetime、binary、int

D:varchar、int、char

答案:char、varchar、text不允许在数据表中弹出重复列值的约束是通过()来实现的

A:CheckB:DefaultC:PrimaryKey或UniqueD:ForeignDey

答案:PrimaryKey或Unique新建一个查询分析器窗口,首先打开的是一个默认的()数据库。

A:temptB:当前操作的数据库C:masterD:studentmanager

答案:master从student表中删除一列address的命令是()。

A:delete

address

from

studentB:alter

table

student

remove

column

addressC:alter

table

student

drop

column

addressD:drop

column

address

from

student

答案:alter

table

student

drop

column

address在数据表中更新数据的命令是()。

A:update…set

B:insertinto

C:deleteD:select

答案:update…set

向student数据表中添加部分记录的命令是()

A:insertintostudent()values()

B:insertintostudent...values...C:insertintostudentvalues()D:insertinto

答案:insertintostudent()values()

向student表中添加某一列address的命令是()。

A:altertablestudentaddaddressvarchar(50)B:addaddressvarchar(50)C:insertintostudentaddressvarchar(50)D:insertintoaddressvarchar(50)

答案:altertablestudentaddaddressvarchar(50)将student表中的列address的数据类型中的字节大小改为varchar(50),使用的语句命令是()。

A:altertablestudentalteraddressvarchar(50)B:addaddressvarchar(50)C:updatestudentsetD:alteraddressvarchar(50)

答案:altertablestudentalteraddressvarchar(50)修改student表中学号为2015001的学生的姓名为“张三”,语句是()。

A:alter

table

student

altersname=’张三’wheresid=’2015001’B:updatestudentsetsname=张三wheresid=’2015001’C:updatestudentsetsname=”张三”wheresid=’2015001’D:updatestudentsetsname=’张三’wheresid=’2015001’

答案:updatestudentsetsname=’张三’wheresid=’2015001’向学生表student中插入记录:学号(sid)、姓名(sname)、所在系(depart),值为(‘2016001‘,’张红‘,’管理系‘),语句是()

A:insertintostudentvalues(‘2016001’,’张红’,’管理系’)B:insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’,‘计应’)C:insertintostudent(sno,sname,depart)values(‘2016001’,’张红’,’管理系’)D:insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’)

答案:insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’)

模块三单元测试

查询年龄在20到23岁之间的学生的信息,所使用的语法命令为()

A:select*fromstudentwhereagefrom20to23B:select*fromstudentC:select*fromstudentwhereagebetween20and23D:select*fromstudentwhereagebetween20to23

答案:select*fromstudentwhereagebetween20and23查询不在信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令为()

A:select*fromstudentwherenotdepartin(”信息技术系”,”机电工程系”,”管理系”)B:select*fromstudentwheredepartnotin(’信息技术系’,’机电工程系’,’管理系’)C:select*fromstudentwherenotdepart=”信息技术系”anddepart=”机电工程系”anddepart=”管理系”D:select*fromstudentwherenotdepart=’信息技术系’anddepart=’机电工程系’anddepart=’管理系’

答案:select*fromstudentwheredepartnotin(’信息技术系’,’机电工程系’,’管理系’)查询成绩不为空值的学生的信息,语法命令为()

A:select*fromscwheregradeisnot‘’B:select*fromscwheregradeisnotnullC:select*fromscwheregrade!=’’D:select*fromscwheregrade!=null

答案:select*fromscwheregradeisnotnull统计信息技术系学生总人数,所使用的语法命令为()

A:selectcount(*)fromstudentwheredepart=’信息技术系’B:selectcount(*)fromstudentwheredepartis’信息技术系’C:selectcount(*)fromstudentD:select*fromstudent

答案:selectcount(*)fromstudentwheredepart=’信息技术系’下面()语句用于对查询结果进行分组

A:computerbyB:groupbyC:havingD:orderby

答案:groupby查询选修了2门课程以上的学生学号()

A:selectsid,count(*)fromscgroupbycidhavingcount(*)>=2B:selectsid,count(*)fromscgroupbysidhavingcount(*)>=2C:selectsid,count(*)fromscgroupbysidwherecount(*)>=2D:selectsid,count(*)fromscwherecount(*)>=2groupbysid

答案:selectsid,count(*)fromscgroupbysidhavingcount(*)>=2按照课程号进行分组,统计学生平均成绩大于60分的学生的信息(

)

A:selectcid,avg(grade)fromstudentwhereavg(grade)>60groupbycidB:selectcid,avg(grade)fromscgroupbycidhavingavg(grade)>60C:selectcid,avg(grade)fromstudentgroupbycidhavingavg(grade)>60D:selectcid,avg(grade)fromcoursewhereavg(grade)>60groupbycid

答案:selectcid,avg(grade)fromscgroupbycidhavingavg(grade)>60查询姓“李”的学生的所有信息

A:select*fromstudentwheresnamelike‘#李%’B:select*fromstudentwheresnamelike‘%李#’C:select*fromstudentwheresnamelike“%李%”D:select*fromstudentwheresnamelike‘%李%

答案:select*fromstudentwheresnamelike‘%李%查询成绩在60分以上的学生的信息及其选课的课程号和成绩

A:select*fromstudent,scwherestudent.sid=sc.sidwherestudent.sid=sc.sidB:select*fromstudent,scwherestudent.sid=sc.sidwheregrade>=60C:selectstudent.*,cid,gradefromstudent,scwherestudent.sid=sc.sidandgrade>=60D:select*fromstudent,coursewheregrade>=60

答案:selectstudent.*,cid,gradefromstudent,scwherestudent.sid=sc.sidandgrade>=60查询选修了a001课程的学生的学号,姓名,系,专业,所选课程的课程号、课程名和成绩

A:select*fromstudent,course,scwheresudent.sid=sc.sidandcourse.cid=sc.sidandcid=‘a001’B:selectstudent.sid,sname,depart,zhuanye,course.cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sidandcid=‘a001’C:selectstudent.sid,sname,depart,zhuanye,cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sidandcid=‘a001’D:selectsid,sname,depart,zhuanye,cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sidandcid=a001

答案:selectstudent.sid,sname,depart,zhuanye,course.cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sidandcid=‘a001’

模块四单元测试

下面描述()是正确的

A:删除视图时同时删除了基本表B:使用视图可以提高数据库的安全性C:视图是一种常用的数据库对象,使用视图不能简化数据操作D:视图和表一样是由数据构成的

答案:使用视图可以提高数据库的安全性修改已经创建好的存储过程的命令是()

A:alterprocedureB:createprocedureC:alterviewD:createview

答案:alterprocedure创建存储过程的命令是()

A:createprocedureasB:alterprocedureC:alterviewD:createview

答案:createprocedureas保护数据库,防止未经授权或不合法的使用造成的数据泄露、非法更改或破坏,这是指数据的()

A:恢复B:完整性C:并发控制D:安全性

答案:安全性创建管理系选修了a001号课程的学生的视图guanlixi_view(

)

A:createviewguanlixi_viewasselectstudent.*,sc.cidfromstudent,scwherecid=’a001’anddepart=’管理系’B:createviewguanlixi_viewasselect*fromstudent,scwherecid=’a001’anddepart=’管理系’C:createviewguanlixi_viewasselectstudent.*,sc.cidfromstudent,scwherecid=’a001’anddepart=’管理系’andstudent.stuid=sc.stuidD:createviewguanlixi_viewasselectstudent.*,sc.cidfromcourse,scwherecid=’a001’anddepart=’管理系’andcourse.stuid=sc.stuid

答案:createviewguanlixi_viewasselectstudent.*,sc.cidfromstudent,scwherecid=’a001’anddepart=’管理系’andstudent.stuid=sc.stuid下面(

)语句是用来删除已经创建好的视图的。

A:altertableB:alterviewC:createview

D:dropview

答案:dropview将学生的学号及平均成绩及格的学生定义成一个视图pjcj(

)

A:createviewpjcjasselectstuid,avg(grade)fromscwhereavg(grade)>=60groupbystuidB:createviewpjcjasselectstuid,avg(grade)fromscgroupbystuidhavingavg(grade)>=60C:createviewpjcj(学号,平均成绩)asselectstuid,avg(grade)fromscgroupbystuidhavingavg(grade)>=60D:createviewpjcj(学号,平均成绩)asselectstuid,avg(grade)fromscwhereavg(grade)>=60groupbystuid

答案:createviewpjcj(学号,平均成绩)asselectstuid,avg(grade)fromscgroupbystuidhavingavg(grade)>=60下面()命令可以查看存储过程的文本信息

A:sp_readingprocedureB:sp_renameC:sp_opentextD:sp_helptext

答案:sp_helptext修改已经创建好的视图中的数据,使用的命令是()。

A:alterviewB:altertableC:dropviewD:update…

set

答案:update…

set

将学生的学号,姓名,系,专业,所选课程的课程号,课程名和成绩创建一个视图stu(

)

A:B:C:D:

答案:

模块五单元测试

以下所示的文件名后缀中只有()不是静态网页的后缀

A:.htmlB:.shtmlC:.htmD:.aspx

答案:.aspx在ADO.NET数据处理流程中,用于连接数据库的类是哪个()

A:SqlConnection

温馨提示

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

评论

0/150

提交评论