本文共 1127 字,大约阅读时间需要 3 分钟。
建立两个表,并为六个用户授予相应权限
首先创建以下两个表:
create table staff(Sno char, Sname char, Sage int, Sduty char, Ssalary int, Sdept char);
create table dept(Dno char, Dname char, Dboss char, Daddress char, Dphone char);创建六个用户:王明、李勇、刘星、张新、周平、杨兰,均为无登录用户。
用户权限分配方案如下:
王明获得两个表的SELECT权限:
grant select on staff to 王明; grant select on dept to 王明;李勇获得两个表的INSERT和DELETE权限:
grant insert, delete on staff to 李勇; grant insert, delete on dept to 李勇;每个职工仅对其自身记录拥有SELECT权限:
grant select on staff when user() = Nameto all; grant select on dept when user() = Nameto all;刘星获得职工表的SELECT和更新(工资字段)权限:
grant select, update(Ssalary) on staff to 刘星;张新获得两个表的更新权限:
grant update on staff to 张新; grant update on dept to 张新;周平获得两个表的全部权限(SELECT、INSERT、UPDATE、DELETE),并可授予其他用户权限:
grant all on staff to 周平 with grant option; grant all on dept to 周平 with grant option;杨兰获得每个部门的SELECT最高工资、最低工资和平均工资权限,但不得查看个人工资:
-- 需要先创建视图: create view view_salary as select staff.Sdept department_number, max(staff.Ssalary) highest_salary, min(staff.Ssalary) lowest_salary, avg(staff.Ssalary) average_salary from staff group by staff.Sdept; grant select on view_salary to 杨兰;注:聚合函数列名需明确指定。
转载地址:http://cknb.baihongyu.com/