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

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

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

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

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

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

fix bug  
张志晨 已提交
14
```sql
M
having  
Mars Liu 已提交
15
grant select on table employee to joe;
M
Mars Liu 已提交
16 17 18 19 20 21
```

## 选项

### 权限名错误

fix bug  
张志晨 已提交
22
```sql
M
having  
Mars Liu 已提交
23
grant query on table employee to joe;
M
Mars Liu 已提交
24 25 26 27
```

### 权限名错误

fix bug  
张志晨 已提交
28
```sql
M
having  
Mars Liu 已提交
29
grant read on table employee to joe;
M
Mars Liu 已提交
30 31 32 33
```

### 操作关键词错误

fix bug  
张志晨 已提交
34
```sql
M
having  
Mars Liu 已提交
35
grant select on table employee of joe;
M
Mars Liu 已提交
36 37 38 39
```

### 操作错误

fix bug  
张志晨 已提交
40
```sql
M
having  
Mars Liu 已提交
41
grant select on table employee.* of joe;
M
Mars Liu 已提交
42 43 44 45
```

### 权限过高

fix bug  
张志晨 已提交
46
```sql
M
having  
Mars Liu 已提交
47
grant all on table employee to joe;
M
Mars Liu 已提交
48
```