sqlrver2008上机五套试题及答案

更新时间:2023-05-14 14:49:29 阅读: 评论:0

SQL Server 2008测验题(A卷)
特种设备使用登记证考试时间90分钟
学号      姓名        班级       
一、选择题(每题3,个别题2分, 40)
1) 假定有一个用户表,表中包含字段:urid (int)urname (varchar) password(varchar)、等,该表需要设置主键,以下说法正确的是。(选择两项)
  a)如果不能有同时重复的urnamepassword,那么urnamepassword可以组合在一起作为主键。 
  b)此表设计主键时,根据选择主键的最小性原则,最好采用urid房东蒋先生作为主键。
  c)此表设计主键时,根据选择主键的最小性原则,最好采用urnamepassword作为组合键。
  d) 如果采用urid作为主键,那么在文明礼仪urid列输入的数值,允许为空。
2) 以下()语句从表TABLE_NAME中提取前10条记录。(选择一项)
  a)lect * from TABLE_NAME where rowcount=10 
  b)lect TOP 10 * from TABLE_NAME 
  c)lect TOP of 10 * from TABLE_NAME
  d)lect * from TABLE_NAME where rowcount<=10
3) 查找 student表中所有电话号码(列名:telephone)的第一位为86,第三位为0的电话号码()。(选择一项)
  a)SELECT telephone FROM student WHERE telephone LIKE '[8,6]%0*'
  b)SELECT telephone FROM student WHERE telephone LIKE '(8,6)*0%'
  c)SELECT telephone FROM student WHERE telephone LIKE '[8,6]_0%' 
  d)SELECT telephone FROM student WHERE telephone LIKE '[8,6]_0*'
4) 现有表Employee,字段:id (int)firstname(varchar), lastname(varchar); 以下sql语句错误的是()。(选择一项)
  a)lect firstname+'.'+lastname as 'name' from employee )
  b)lect firstname+'.'+lastname='name' from employee
  c)lect 'name'=firstname+'.'+lastname from employee
  d)lect firstname,lastname from employee 水果罐头有营养吗
5) 若要删除book表中所有数据,以下语句错误的是()。(选择两项)
  a)truncate table book  //对整个数据表中的数据进行删除,没有附带事物这一特性,比delete要快,只能删除单表中的数据
  b)delete * from book 
  c)drop table book //删除整个数据表对象
  d)delete from book
6) 现有书目表book,包含字段:price (float); 现在查询一条书价最高的书目的详细信息,以下语句正确的是()。(选择两项)
  a)lect top 1 * from book order by price asc 
  b)lect top 1 * from book order by price desc 
  c)lect top 1 * from book where price= (lect max (price)from book)
  d)lect top 1 * from book where price= max(price)
//聚合函数只能放在lect 和from 之间使用
7) 查询student表中的所有非空email信息, 以下语句正确的是()。(选择一项)
  a)Select email from student where email !=null
  b)Select email from student where email not is null 
  c)Select email from student where email <> null
  d)Select email from student where email is not null 手写春联图片
8) 现有订单表orders,包含用户信息urid, 产品信息 productid, 以下()语句能够返回至少被订购过两回的productid? (选择一项)
  a)lect productid from orders where count(productid)>1
  b)lect productid from orders where max(productid)>1 
  c)lect productid from orders where having count(productid)>1 group by productid_ 
  d)lect productid from orders group by productid having count(productid)>1
9) 使用以下()不可以进行模糊查询。(选择一项)(本题2分)
  a)OR
  b)Not between 
  c)Not IN 
  d)Like
10) Sql语句:lect * from students where SNO like ‘010[^0]%[A,B,C]%’,可能会查询出的SNO是()。(选择两项)(本题2分)
  a)01053090A #Hm3?  
  b)01003090A01
  c)01053090D09 
  d)0101A01
11) 创建一个名为‘Customers’的新表,同时要求新表中包含表‘clients’的所有记录,sql语句是()。(选择一项)
  a)Select * into customers from clients 
  b)Select into customers from clients 
  c)Inrt into customers lect * from clients
  d)Inrt customers lect * from clients
12) 假设订单表orders用来存储订单信息,cid代表客户编号,money代表单次订购额,现要查询每个客户的订购次数和每个客户的订购总金额,下面()sql语句可以返回正确结果。(选择一项)
  a)lect cid,count(distinct(cid)),sum(money) from orders group by cid
  b)lect cid,count(distinct(cid)),sum(money) from orders order by cid 
  c)lect cid,count(cid),sum(money) from orders order by cid 
  d)lect cid,count(cid),sum(money) from orders group by cid
13) 以下描述不正确的是 ()(本题2分)
  a)存储过程能够实现较快的执行速度。
  b)内嵌表值型函数相当于一个带参数的视图。
  c)不指定所有者时,调用标量函数会出错。
  d)可以通过视图更改任意基表
14) 主索引可确保字段中输入值的()性。(本题2分)
A.多样
B.重复
C.唯一
D.若干
15) Select 职工号 FROM 职工 WHERE 工资>1250 命令的功能是()。(本题2分)
A.查询工资大于1250的纪录
B.查询1250号记录后的记录
C.检索所有的职工号
D.从[职工]关系中检索工资大于1250的职工号
1.二、判断题:(每小题4分,共20分)
2.F
3.T
4.F
5.F
6.T
1.主键字段允许为空。(f)
2.SQL Server 自动为primary key约束的列建立一个索引。(t)
3.数据库的名称一旦建立就不能重命名。(f)
钓鱼鱼饵4.固定数据库角色:db_datarader 的成员可修改本数据库内表中的数据。(t)f
5.验证模式是在安装SQL Server过程中选择的。系统安装之后,可以重新修改SQL Server系统的验证模式。(t)
、阅读下列程序,说明它们的功能。(每题7分,共20分)
1.
关于夏天的好词u 成绩数据库
If exists ( lect name from sysobjects
Where name=’student_inf’ and type=’p’)
Drop procedure student_inf
Go
Create procedure student_inf as
Select 学号, 姓名, 总学分 from xsqk
2. (本题6分)重要的英语怎么说
u 教学成绩管理数据库
go
alter table 学生信息表 
add email varchar(20) null, 
学历 text,
照片 image
3.
u 教学成绩管理数据库
lect 教学成绩表.学号,姓名,sum(分数) 总分,avg(分数) 均分
from 学生信息表 join 教学成绩表
on 学生信息表.学号 = 教学成绩表.学号
group by 教学成绩表.学号,姓名
order by avg(分数) desc
四、编程题(20分)
1、问题描述:
已知关系模式:
S (SNO,SNAME)          学生关系。SNO 为学号,SNAME 为姓名

本文发布于:2023-05-14 14:49:29,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/628525.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:主键   数据库   数据   教学   信息   选择   订购
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图