原码:
grant all privileges on table student,class to U1 with grant option;
结果:
修改:
grant select,references,insert,update,delete on student to U1 with grant option; grant select,references,insert,update,delete on class to U1 with grant option; # 使用 grant all privilieges 会提示: # ALL 权限已不再推荐使用,并且只保留用于兼容性目的。它并不表示对实体定义了 ALL 权限。
原码:
grant R1 to U1 with grant option;
结果:
修改:
alter role R1 add member U1;
需求 : 赋予用户只可查看自己信息的权限
可用方式 : 建立相应视图并赋予对应用户权限