limit_action.md 811 字节
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
15 16
alter user analysis 
    with MAX_QUERIES_PER_HOUR 10000;
M
Mars Liu 已提交
17 18 19 20 21 22
```

## 选项

### A

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


### B

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

### C

fix bug  
张志晨 已提交
38
```sql
39 40
alter role analysis 
    with MAX_QUERIES_PER_HOUR=10000;
M
Mars Liu 已提交
41 42 43 44
```

### D

fix bug  
张志晨 已提交
45
```sql
46 47
alter user analysis 
    set MAX_QUERIES_PER_HOUR 10000;
M
Mars Liu 已提交
48
```