1、掌握数据更新语句,视图的定义
2、掌握用户创建及权限的授予与回收
1、创建一张history_student表(结构同student),将学生表中数据全部插入到history_student表中。
select* into history_student
from student
2、新插入一门课程,并默认所有学生都选修该门课程插入到成绩表中(成绩为NULL)。
insert into course(cname,cno)
values ('计算机组成原理','08181169')
insert into score
select sno,'08181169',null from student
3、将所有成绩为空的成绩全部修改为60分。
update score
set grade=60
where grade=null
4、将所有平均成绩低于60分的学生成绩记录删除。
update score
set grade=null
where sno in
(select sno
from score sc
where sc.sno=sno
group by sno
5、创建一个视图VIEW1:查询d01系学生的信息,只投影学生学号,姓名,年龄,系。要求在进行更新操作时满足约束。
create view view1
as
select sno,sname,age,depart
from student
where depart='001'
6、由VIEW1导出一个视图VIEW2:查询年龄在18到20岁的学生。
create view view2
as
select *
from view1
where age between 18 and 20
7、将查询语句select sno,sname from view2 where ssex=’女’等价转换为对基本表的查询语句并运行结果。
select sno,sname
from student
where gender='女'
and depart='001'
and(age between 18 and 20)
8、将VIEW1,VIEW2删除。
drop view view1 ,view2
9、创建登录用户:USER1,USER2,USER3,DBA给USER1授予select,update(sage)权限,并允许其传递授权;USER1授予select,update(sage)权限给USER2,其中select允许传递;USER2授予select权限给USER3,不允许传递;DBA给USER3授予update(sage)权限,不允许其传递授权。
?
?
?
?
?
?
10、将第9题中的所有权限逐级回收。
?
?
?
?
|