




下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SqlServer数据库原理与应用-知到答案、智慧树答案
第一章单元测试
1
、问题:关系数据库是若干()的集合。
选项:
A:表(关系)
B:视图
C:行
D:列
答案:【表(关系)】
2
、问题:()是位于用户和操作系统之间的一层数据管理软件,数据库在建立、使用和维护时由其统一管理、统一控制。
选项:
A:DBMS
B:DB
C:DBS
D:DBA
答案:【DBMS】
3
、问题:在SQLServer中,不是对象的是()
选项:
A:用户
B:数据
C:表
D:数据类型
答案:【数据类型】
4
、问题:SQLSERVER数据库类型有很多种,其中用来存储整数的叫做整数型数据类型,下列不是整数型数据类型的是()
选项:
A:bigint
B:int
C:smallint
D:char
答案:【char】
5
、问题:在下面职工信息表和部门信息表中,职工号和部门号分别是主关键字。职工表(职工号、职工名、部门号、职务、工资)部
门表(部门号、部门名、部门人数据、工资总数)在这两个表中,只有一个外关键字,是()
选项:
A:职工信息表的“职工号”
B:职工信息表的“部门号”
C:部门表的“部门号”
D:部门表的“部门名”
答案:【职工信息表的“部门号”】
6
、问题:选择要执行操作的数据库,应该使用()命令
选项:
A:GO
B:USE
C:EXEC
D:SP_EXEC
答案:【USE】
7
、问题:目前()数据库已经逐步淘汰了网状数据库和层次数据库,成为当今最为流行的商用数据库系统
选项:
A:关系
B:面向对象
C:分布
D:sql
答案:【关系】
8
、问题:长期存储在计算机内的有组织,可共享的数据集合是()
选项:
A:数据库管理系统
B:数据库系统
C:数据库
D:文件组织
答案:【数据库】
9
、问题:数据库系统不仅包括数据库本身,还要包括相应的硬件,软件和()
选项:
A:数据库管理系统
B:数据库应用系统
C:相关的计算机系统
D:各类相关人员
答案:【各类相关人员】
1
0、问题:SQLServer的字符型系统数据类型主要包括()
选项:
A:int、money、char
B:char、varchar、text
C:datetime、binary、int
D:varchar、int、char
答案:【char、varchar、text】
1
1、问题:创建数据库的语法命令是()
选项:
A:createtable
B:createdatabase
C:createview
D:createdatebase
答案:【createdatabase】
1
2、问题:新建一个查询分析器窗口,首先打开的是一个默认的()数据库
选项:
A:tempt
B:master
C:当前操作的数据库
D:studentmanager
答案:【master】
第二章单元测试
1
、问题:不允许在数据表中弹出重复列值的约束是通过()来实现的
选项:
A:Check
B:Default
C:ForeignDey
D:PrimaryKey或Unique
答案:【PrimaryKey或Unique】
2
、问题:从student表中删除一列address的命令是()
选项:
A:alter?table?student?drop?column?address
B:alter?table?student?remove?column?address
C:drop?column?address?from?student
D:delete?address?from?student
答案:【drop?column?address?from?student】
3
、问题:在数据表中更新数据的命令是()
选项:
A:select??
B:insertinto?
C:update…set?????
D:delete
答案:【update…set?????】
4
、问题:要删除数据表中满足某条件的记录的命令是()
选项:
A:delete
B:delete...from...
C:deletefrom...
D:deletefrom...where...
答案:【deletefrom...where...】
5
、问题:向student数据表中添加部分记录的命令是()
选项:
A:insertinto
B:insertintostudentvalues()
C:insertintostudent()values()
D:insertintostudent...values...
答案:【insertintostudent()values()】
6
、问题:向student数据表中添加全部记录的命令是()
选项:
A:insertinto
B:insertintostudent
C:nsertintostudentvalues()
D:nsertintostudent()values()
答案:【nsertintostudentvalues()】
7
、问题:向student表中添加某一列address的命令是()
选项:
A:altertablestudentaddaddressvarchar(50)
B:addaddressvarchar(50)
C:insertintoaddressvarchar(50)
D:insertintostudentaddressvarchar(50)
答案:【altertablestudentaddaddressvarchar(50)】
8
、问题:将student表中的列address的数据类型中的字节大小改为varchar(50),使用的语句命令是()
选项:
A:updatestudentset
B:addaddressvarchar(50)
C:altertablestudentalteraddressvarchar(50)
D:alteraddressvarchar(50)
答案:【altertablestudentalteraddressvarchar(50)】
9
、问题:创建数据表的语法命令是()
选项:
A:createtable
B:createdatabase
C:createview
D:creattable
答案:【createtable】
1
0、问题:更新student数据表中address列的数据类型中字节长度为varchar(50)
选项:
A:altertablestudentdropcolumnaddress
B:altertablestudentalteraddressvarchar(50)
C:dropcolumnaddressfromstudent
D:deleteaddressfromstudent
答案:【altertablestudentalteraddressvarchar(50)】
1
1、问题:修改student表中学号为2015001的学生的姓名为“张三”
选项:
A:updatestudentsetsname=’张三’wheresid=’2015001’
B:updatestudentsetsname=张三wheresid=’2015001’
C:updatestudentsetsname=”张三”wheresid=’2015001’
D:altertablestudentaltersname=’张三’wheresid=’2015001
答案:【updatestudentsetsname=’张三’wheresid=’2015001’】
1
2、问题:向学生表student中插入记录:学号(sid)、姓名(sname)、所在系(depart),值为(‘2016001‘,’张红‘,’管理系‘)
选项:
A:insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’)
B:insertintostudentvalues(‘2016001’,’张红’,’管理系’)
C:insertintostudent(sid,sname,depart)values("2016001","张红","管理系")
D:insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’,‘计应’)
答案:【insertintostudent(sid,sname,depart)values(‘2016001’,’张红’,’管理系’)】
第三章单元测试
1
、问题:查询年龄在20到23岁之间的学生的信息,所使用的语法命令为()
选项:
A:select*fromstudentwhereagebetween20to23
B:select*fromstudentwhereagebetween20and23
C:select*fromstudentwhereagefrom20to23
D:select*fromstudent
答案:【select*fromstudentwhereagebetween20and23】
2
、问题:查询年龄不在20到23岁之间的学生的信息,所使用的语法命令为()
选项:
A:select*fromstudentwhereagenotbetween20and23
B:select*fromstudentwhereagenotbetween20to23
C:select*fromstudentwherenotagefrom20to23
D:select*fromstudentwhereagebetween20and23
答案:【select*fromstudentwhereagenotbetween20and23】
3
、问题:查询信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令()
选项:
A:select*fromstudentwheredepart=’信息技术系’anddepart=’机电工程系’anddepart=’管理系’
B:select*fromstudentwheredepart=”信息技术系”anddepart=”机电工程系”anddepart=”管理系”
C:select*fromstudentwheredepartin(’信息技术系’,’机电工程系’,’管理系’)
D:select*fromstudentwheredepartin(”信息技术系”,”机电工程系”,”管理系”)
答案:【select*fromstudentwheredepartin(’信息技术系’,’机电工程系’,’管理系’)】
4
、问题:查询不在信息技术系,机电工程系和管理系的学生的信息,所使用的语法命令为()
选项:
A:select*fromstudentwherenotdepart=’信息技术系’anddepart=’机电工程系’anddepart=’管理系’
B:select*fromstudentwheredepartnotin(’信息技术系’,’机电工程系’,’管理系’)
C:select*fromstudentwherenotdepart=”信息技术系”anddepart=”机电工程系”anddepart=”管理系”
D:select*fromstudentwherenotdepartin(”信息技术系”,”机电工程系”,”管理系”)
答案:【select*fromstudentwheredepartnotin(’信息技术系’,’机电工程系’,’管理系’)】
5
、问题:查询成绩为空值的学生的信息,语法命令为()
选项:
A:select*fromscwheregrade=null
B:select*fromscwheregradeisnull
C:select*fromscwheregradeis‘’
D:select*fromscwheregrade=’’
答案:【select*fromscwheregradeisnull】
6
、问题:查询成绩不为空值的学生的信息,语法命令为()
选项:
A:select*fromscwheregradeisnotnull
B:select*fromscwheregrade!=null
C:select*fromscwheregradeisnot‘’
D:select*fromscwheregrade!=’’
答案:【select*fromscwheregradeisnotnull】
7
、问题:查询信息技术系年龄在20到23岁之间的学生的信息,所使用的语法命令为()
选项:
A:select*fromstudentwhereagebetween20to23anddepart=’信息技术系’
B:select*fromstudentwhereagefrom20to23anddepart=’信息技术系’
C:select*fromstudentwheredepart=’信息技术系’andagebetween20to23
D:select*fromstudentwhereagebetween20and23anddepart=’信息技术系’
答案:【select*fromstudentwhereagebetween20and23anddepart=’信息技术系’】
8
、问题:统计信息技术系学生总人数,所使用的语法命令为()
选项:
A:select*fromstudent
B:selectcount(*)fromstudent
C:selectcount(*)fromstudentwheredepart=’信息技术系’
D:selectcount(*)fromstudentwheredepartis’信息技术系’
答案:【selectcount(*)fromstudentwheredepart=’信息技术系’】
9
、问题:查询选修了a001号课程且成绩在60分以上的所有学生
选项:
A:select*fromstudentwherecid=’a001’andgrade>=60
B:select*fromcoursewherecid=’a001’andgrade>=60
C:select*fromscwherecid=’a001’andgrade>=60
D:select*fromscwherecid=’a001’
答案:【select*fromscwherecid=’a001’andgrade>=60】
1
0、问题:下面()语句用于对查询结果进行分组
选项:
A:computerby
B:orderby
C:groupby
D:having
答案:【groupby】
1
1、问题:属于不属于聚合函数的是()
选项:
A:AVG()?
B:MAX()
C:COUNT()
D:CONTAINSTABLE()
答案:【CONTAINSTABLE()】
1
2、问题:按课程号分类,统计相应的选课人数()
选项:
A:selectcid,count(*)fromstudentgroupbycid
B:selectcid,count(distinctsid)fromscgroupbycid
C:selectcid,count(distinctsid)fromstudentgroupbycid
D:selectcid,count(distinctcid)fromscgroupbycid
答案:【selectcid,count(distinctsid)fromscgroupbycid】
1
3、问题:查询选修了2门课程以上的学生学号()
选项:
A:selectsid,count(*)fromscgroupbysidwherecount(*)>=2
B:selectsid,count(*)fromscwherecount(*)>=2groupbysid
C:selectsid,count(*)fromscgroupbysidhavingcount(*)>=2
D:selectsid,count(*)fromscgroupbycidhavingcount(*)>=2
答案:【selectsid,count(*)fromscgroupbysidhavingcount(*)>=2】
1
4、问题:用于计算平均值的聚合函数是()
选项:
A:AVG()
B:MAX()
C:COUNT()
D:CONTAINSTABLE()
答案:【AVG()】
1
5、问题:按照学号进行分组,统计学生的平均成绩()
选项:
A:selectsid,avg(grade)fromstudentgroupbysid
B:selectsid,avg(grade)fromscgroupbysid
C:selectsid,avg(grade)fromstudentgroupbycid
D:selectsid,avg(grade)fromscgroupbycid
答案:【selectsid,avg(grade)fromscgroupbysid】
1
6、问题:用于统计最高值的聚合函数是()
选项:
A:AVG()
B:MAX()
C:COUNT()
D:CONTAINSTABLE()
答案:【MAX()】
1
7、问题:查询选修了a001号课程的学生的最高成绩()
选项:
A:selectcid,max(grade)fromstudentwherecid=’a001’groupbycid
B:selectcid,max(grade)fromstudentgroupbycidhavingcid=’a001’
C:selectcid,max(grade)fromscwherecid=’a001’groupbycid
D:selectcid,max(grade)fromcoursewherecid=’a001’groupbycid
答案:【selectcid,max(grade)fromscwherecid=’a001’groupbycid】
1
8、问题:用于统计最低值的聚合函数是()
选项:
A:AVG()
B:MAX()
C:COUNT()
D:MIN()
答案:【MIN()】
1
9、问题:统计选修了a001课程的学生的平均成绩()
选项:
A:selectcid,avg(grade)fromstudentwherecid=’a001’groupbycid
B:selectcid,avg(grade)fromstudentgroupbycidhavingcid=’a001’
C:selectcid,avg(grade)fromscwherecid=’a001’groupbycid
D:selectcid,avg(grade)fromcoursewherecid=’a001’groupbycid
答案:【selectcid,avg(grade)fromscwherecid=’a001’groupbycid】
2
0、问题:按照课程号进行分组,统计学生平均成绩大于60分的学生的信息()
选项:
A:selectcid,avg(grade)fromstudentwhereavg(grade)>60groupbycid
B:selectcid,avg(grade)fromstudentgroupbycidhavingavg(grade)>60
C:selectcid,avg(grade)fromcoursewhereavg(grade)>60groupbycid
D:selectcid,avg(grade)fromscgroupbycidhavingavg(grade)>60
答案:【selectcid,avg(grade)fromscgroupbycidhavingavg(grade)>60】
2
1、问题:下面()语句用于对查询结果进行排序
选项:
A:Computerby
B:Orderby
C:Groupby
D:having
答案:【Orderby】
2
2、问题:查询全体学生的情况,查询结果按所在系升序排列,同一系中的学生按年龄的降序排列()
选项:
A:select*fromstudentorderbydepart,agedesc
B:select*fromstudentorderbydepartandagedesc
C:select*fromscorderbydepart,agedesc
D:select*fromscorderbydepartandagedesc
答案:【select*fromstudentorderbydepart,agedesc】
2
3、问题:按照学号进行分组,统计学生的平均成绩,且平均分按降序排列
选项:
A:selectsid,avg(grade)fromscgroupbysidorderbyavg(grade)desc
B:selectsid,avg(grade)fromstudentgroupbysidorderbyavg(grade)desc
C:selectsid,avg(grade)fromstudentgroupbycidorderbyavg(grade)
D:selectsid,avg(grade)fromscgroupbycidorderbyavg(grade)desc
答案:【selectsid,avg(grade)fromscgroupbysidorderbyavg(grade)desc】
2
4、问题:查询姓“李”的学生的所有信息
选项:
A:select*fromstudentwheresnamelike‘%李%
B:select*fromstudentwheresnamelike“%李%”
C:select*fromstudentwheresnamelike‘#李%’
D:select*fromstudentwheresnamelike‘%李#’
答案:【select*fromstudentwheresnamelike‘%李%】
2
5、问题:查询学生的学号,姓名,选修课程号和课程成绩
选项:
A:selectsid,sname,cid,cnamefromstudent,course
B:selectsid,sname,cid,cnamefromstudent,sc
C:selectsid,sname,cid,gradefromstudent,scwherestudent.sid=sc.sid
D:select*fromstudent,scwherestudent.sid=sc.sid
答案:【selectsid,sname,cid,gradefromstudent,scwherestudent.sid=sc.sid】
2
6、问题:查询成绩在60分以上的学生的信息及其选课的课程号和成绩
选项:
A:select*fromstudent,coursewheregrade>=60
B:selectstudent.*,cid,gradefromstudent,scwherestudent.sid=sc.sidandgrade>=60
C:select*fromstudent,scwherestudent.sid=sc.sidwheregrade>=60
D:select*fromstudent,scwherestudent.sid=sc.sidwherestudent.sid=sc.sid
答案:【selectstudent.*,cid,gradefromstudent,scwherestudent.sid=sc.sidandgrade>=60】
2
7、问题:查询学生的学号,姓名,系,专业,所选课程的课程号、课程名和成绩
选项:
A:select*fromstudent,course,scwheresudent.sid=sc.sidandcourse.cid=sc.sid
B:selectsid,sname,depart,zhuanye,cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sid
C:selectstudent.sid,sname,depart,zhuanye,cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sid
D:selectstudent.sid,sname,depart,zhuanye,course.cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sid
答案:【selectstudent.sid,sname,depart,zhuanye,course.cid,cname,gradefromstudent,course,scwherestudent.sid=sc.sidandcourse.cid=sc.sid】
2
8、问题:查询选修了a001课程的学生的学号,姓名,系,专业,所选课程的课程号、课程名和成绩
选项:
A:select*fromstudent,course,scwheresudent.sid=sc.sidandcourse.cid=sc.sidandcid=‘a001’
B:selectsid,sname,depart,zhuanye,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:selectstudent.sid,sname,depart,zhuanye,course.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’】
第四章单元测试
1
、问题:下面语句()是正确的
选项:
A:视图是一种常用的数据库对象,使用视图不能简化数据操作
B:使用视图可以提高数据库的安全性
C:删除视图时同时删除了基本表
D:视图和表一样是由数据构成的
答案:【使用视图可以提高数据库的安全性】
2
、问题:下面()语句是用来创建视图的。
选项:
A:createviewas
B:createtable
C:alterview
D:altertable
答案:【createviewas】
3
、问题:下面()语句是用来修改已经创建好的视图的
选项:
A:createview
B:update…set…
C:alterview
D:altertable
答案:【alterview】
4
、问题:创建存储过程的命令是()
选项:
A:createview
B:createprocedure
C:alterprocedure
D:alterview
答案:【createprocedure】
5
、问题:修改已经创建好的存储过程的命令是()
选项:
A:createview
B:createprocedure
C:alterprocedure
D:alterview
答案:【alterprocedure】
6
、问题:下面()命令可以查看存储过程的文本信息
选项:
A:sp_helptext
B:sp_opentext
C:sp_rename
D:sp_readingprocedure
答案:【sp_helptext】
7
、问题:保护数据库,防止未经授权或不合法的使用造成的数据泄露、非法更改或破坏,这是指数据的()
选项:
A:安全性
B:完整性
C:并发控制
D:恢复
答案:【安全性】
第五章单元测试
1
、问题:以下所示的文件名后缀中只有()不是静态网页的后缀
选项:
A:.html
B:.shtml
C:.htm
D:.aspx
答案:【.aspx】
2
、问题:下列文件名后缀中,只有()不是动态网页的后缀
选项:
A:.jsp
B:.xml
C:.aspx
D:.php
答案:【.xml】
3
、问题:下列选项中,只有()是错误的
选项:
A:提供了多种语言支持
B:提供了多种平台支持
C:提供了跨平台支持,也可以在Unix平台下执行
D:采取编译执行的方式,极大地提高了运行的性能
答案:【提供了跨平台支持,也可以在Unix平台下执行】
4
、问题:在ADO.NET数据处理流程中,用于连接数据库的类是哪个()
选项:
A:SqlConnection
B:SqlCommand
C:SqlDataRead
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- Unit 6 In a nature park (教学设计)-2024-2025学年人教PEP版英语五年级上册
- 学校学年度工作总结5篇
- 苏少版一年级音乐下册(简谱)第二单元《唱:花儿朵朵 》教学设计
- 2025酒店领班个人年终工作总结(9篇)
- 中级职称工程师个人工作总结(5篇)
- 2025至2030年中国软饮料数据监测研究报告
- 汽车美容师客户服务考试试题及答案
- 说理性作文6篇
- 汽车美容工具使用指导试题及答案
- 2025至2030年中国母婴用品数据监测研究报告
- 健康咨询与服务推广协议
- 护士N1晋级N2述职报告
- 中国糖尿病防治指南(2024版)解读
- 食堂食材配送采购投标方案(技术标)
- 山东省汶上县市级名校2025届中考生物全真模拟试卷含解析
- 2025年度智能硬件产品全国区域独家代理合同3篇
- 办公室安全知识培训课件
- 2025年四川省成都市青白江区招聘50人历年高频重点提升(共500题)附带答案详解
- 2025年浙江嘉兴市众业供电服务限公司招聘38人高频重点提升(共500题)附带答案详解
- 【课件】第12课+理想与典范-古希腊与古罗马美术+课件高中美术人教版(2019)美术鉴赏
- 建筑行业安全隐患举报奖励机制
评论
0/150
提交评论