博客
关于我
【2020-2021春学期】数据库作业11:第四章课后题
阅读量:136 次
发布时间:2019-02-27

本文共 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/

    你可能感兴趣的文章
    Objective-C实现greedy coin change贪心硬币找零算法(附完整源码)
    查看>>
    Objective-C实现GridGet算法(附完整源码)
    查看>>
    Objective-C实现half adder半加器算法(附完整源码)
    查看>>
    Objective-C实现hamiltonianCycle哈密尔顿图算法(附完整源码)
    查看>>
    Objective-C实现hamming code汉明码算法(附完整源码)
    查看>>
    Objective-C实现hamming numbers汉明数算法(附完整源码)
    查看>>
    Objective-C实现hammingDistance汉明距离算法(附完整源码)
    查看>>
    Objective-C实现hanning 窗(附完整源码)
    查看>>
    Objective-C实现hanoiTower汉诺塔算法(附完整源码)
    查看>>
    Objective-C实现hardy ramanujana定理算法(附完整源码)
    查看>>
    Objective-C实现harmonic series调和级数算法(附完整源码)
    查看>>
    Objective-C实现harris算法(附完整源码)
    查看>>
    Objective-C实现HashTable哈希表算法(附完整源码)
    查看>>
    Objective-C实现haversine distance斜距算法(附完整源码)
    查看>>
    Objective-C实现heap sort堆排序算法(附完整源码)
    查看>>
    Objective-C实现heaps algorithm堆算法(附完整源码)
    查看>>
    Objective-C实现heap堆算法(附完整源码)
    查看>>
    Objective-C实现Heap堆算法(附完整源码)
    查看>>
    Objective-C实现hexagonal numbers六边形数算法(附完整源码)
    查看>>
    Objective-C实现hidden layers neural network浅层神经网络算法(附完整源码)
    查看>>