view_privileges.md 557 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 查看用户权限

Joe 想要查看 Fred 的 MySQL 账户 `'fred'@'%'` 的权限,他应该怎么做?

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
Mars Liu 已提交
15 16 17 18 19 20 21
show grants for fred;
```

## 选项

### A

fix bug  
张志晨 已提交
22
```sql
M
Mars Liu 已提交
23 24 25 26 27
select grants from fred;
```

### B

fix bug  
张志晨 已提交
28
```sql
M
Mars Liu 已提交
29 30 31 32 33
show privileges for fred;
```

### B

fix bug  
张志晨 已提交
34
```sql
M
Mars Liu 已提交
35 36
show privileges from fred;
```