limit_action.md 786 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 限制用户使用资源

Joe 需要限制数据分析组(role analysis)的用户, 每小时查询次数不能超过10000次。应该怎么操作?

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
alter user analysis with MAX_QUERIES_PER_HOUR 10000;
```

## 选项

### A

fix bug  
张志晨 已提交
22
```sql
M
Mars Liu 已提交
23 24 25 26 27 28
set user analysis with MAX_QUERIES_PER_HOUR 10000;
```


### B

fix bug  
张志晨 已提交
29
```sql
M
Mars Liu 已提交
30 31 32 33 34
alter role analysis with MAX_QUERIES_PER_HOUR 10000;
```

### C

fix bug  
张志晨 已提交
35
```sql
M
Mars Liu 已提交
36 37 38 39 40
alter role analysis with MAX_QUERIES_PER_HOUR=10000;
```

### D

fix bug  
张志晨 已提交
41
```sql
M
Mars Liu 已提交
42 43
alter user analysis set MAX_QUERIES_PER_HOUR 10000;
```