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)
F
feilong 已提交
9

M
Mars Liu 已提交
10 11
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
12

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

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

## 选项

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

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

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

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

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

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