role.md 1.0 KB
Newer Older
M
Mars Liu 已提交
1 2
# 角色

M
having  
Mars Liu 已提交
3
Joe 现在是团队的 DBA,公司数据分析组有 Fred、Alice、James、Jone 四位成员,现在Joe需要给数据分析组授权,允许他们
M
Mars Liu 已提交
4
查询 MySQL 8 服务器 goods 数据库中的所有表,*规范*的操作应该是
M
Mars Liu 已提交
5

M
Mars Liu 已提交
6 7
<hr/>

M
Mars Liu 已提交
8
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
M
Mars Liu 已提交
9 10
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
11

M
Mars Liu 已提交
12 13
## 答案

M
having  
Mars Liu 已提交
14
```mysql
M
Mars Liu 已提交
15 16
create role analysis;
grant analysis to fred, alice, james, jone;
M
having  
Mars Liu 已提交
17 18
grant select on  goods.* to analysis;
flush privileges;
M
Mars Liu 已提交
19 20 21 22 23 24
```

## 选项

### 将来人员变动管理会很繁琐

M
having  
Mars Liu 已提交
25 26
```mysql
grant select on goods.* to fred, alice, james, jone;
M
Mars Liu 已提交
27 28
```

M
having  
Mars Liu 已提交
29
### 错误的语法
M
Mars Liu 已提交
30

M
having  
Mars Liu 已提交
31
```mysql
M
Mars Liu 已提交
32 33
create role analysis;
grant analysis to fred, alice, james, jone;
M
having  
Mars Liu 已提交
34 35
grant all on all tables in schema goods to analysis;
flush privileges;
M
Mars Liu 已提交
36 37
```

M
having  
Mars Liu 已提交
38
### 过度授权
M
Mars Liu 已提交
39

M
having  
Mars Liu 已提交
40
```mysql
M
Mars Liu 已提交
41 42
create role analysis;
grant analysis to fred, alice, james, jone;
M
having  
Mars Liu 已提交
43 44
grant select on *.* to analysis;
flush privileges ;
M
Mars Liu 已提交
45
```