对于下列两个关系模式:
学生(学号,姓名,年龄,性别,家庭住址,班级号)
班级(班级号,班级名,班主任,班长)
(1)授予用户U1拥有对两个表的所有权限,并可给其他用户授权
grant all privileges
on table 学生,班级
to U1
with grant option;
grant select,update(家庭住址)
on table 学生
to U2;
grant select
on table 班级
to public;
grant select,update
on table 学生
to R1;
grant R1
to U1
with admin option;
部门(部门号,名称,经理名,地址,电话号)
(1)用户网名对两个表有select权限
grant select
on table 职工,部门
to 王明;
#收回:
revoke select
on table 职工,部门
from 王明;
grant insert,delete
on table 职工,部门
to 李勇;
#收回:
revoke insert,delete
on table 职工,部门
from 李勇;
(3)用户刘馨对职工表有select权限,对字段工资有更新权限
grant select,update(工资)
on table 职工
to 刘馨;
#收回:
revoke select,update
on table 职工
from 刘馨;
(4)用户张鑫具有修改这两个表的结构的权限
grant alter table
on table 职工,部门
to 张鑫;
#收回:
revoke alter table
on table 职工,部门
from 张鑫;
grant all privileges
on table 职工,部门
to 周平
with grant option;
#收回:
revoke all privileges
on table 职工,部门
from 周平;
create view 部门工资
as
select 部门.名称,max(工资),min(工资),avg(工资)
from 职工,部门
where 职工.部门号= 部门.部门号
group by 职工.部门号;
grant select on table 部门工资 to 杨兰;
#收回:
revoke selct
on table 部门工资
from 杨兰;
drop view 部门工资;