grant.md 780 字节
Newer Older
M
Mars Liu 已提交
1 2
# 授权

M
having  
Mars Liu 已提交
3
管理员要给用户 joe 授权,允许他查询 emplyee 表,应用哪一条语句?
M
Mars Liu 已提交
4

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

M
Mars Liu 已提交
7
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
F
feilong 已提交
8

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

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

M
having  
Mars Liu 已提交
14 15
```mysql
grant select on table employee to joe;
M
Mars Liu 已提交
16 17 18 19 20 21
```

## 选项

### 权限名错误

M
having  
Mars Liu 已提交
22 23
```mysql
grant query on table employee to joe;
M
Mars Liu 已提交
24 25 26 27
```

### 权限名错误

M
having  
Mars Liu 已提交
28 29
```mysql
grant read on table employee to joe;
M
Mars Liu 已提交
30 31 32 33
```

### 操作关键词错误

M
having  
Mars Liu 已提交
34 35
```mysql
grant select on table employee of joe;
M
Mars Liu 已提交
36 37 38 39
```

### 操作错误

M
having  
Mars Liu 已提交
40 41
```mysql
grant select on table employee.* of joe;
M
Mars Liu 已提交
42 43 44 45
```

### 权限过高

M
having  
Mars Liu 已提交
46 47
```mysql
grant all on table employee to joe;
M
Mars Liu 已提交
48
```