博客
关于我
【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/

    你可能感兴趣的文章
    R&Python Data Science 系列:数据处理(2)
    查看>>
    php递归算法总结
    查看>>
    PHP递归遍历文件夹
    查看>>
    R&Python Data Science 系列:数据处理(1)
    查看>>
    php错误日志文件
    查看>>
    PHP错误解决:Array and string offset access syntax with curly braces is deprecated
    查看>>
    php隐藏手机号中间4位方法总结
    查看>>
    php面向对象三大特征封装、多态、继承
    查看>>
    php面向对象全攻略
    查看>>
    php面向对象的基础题
    查看>>
    php面试题二--解决网站大流量高并发方案(从url到硬盘来解决高并发方案总结)...
    查看>>
    php页面增加自选项,php-在Woocommerce中添加新的自定义默认订购目录选项
    查看>>
    php页面静态化技术;学习笔记
    查看>>
    php项目心得以及总结
    查看>>
    R&Python Data Science 系列:数据处理(4)长宽格式数据转换
    查看>>
    PHP项目集成支付宝PC端扫码支付API(国内支付)
    查看>>
    php预定义常量&变量
    查看>>
    R 集成算法③ 随机森林
    查看>>
    php验证码背景色设置无效
    查看>>
    php验证邮箱是否有效
    查看>>