regex.md 725 字节
Newer Older
M
regex  
Mars Liu 已提交
1 2 3 4
# 正则表达式

Joe 想要找出 goods 表中所有名称包含牛奶的冰激凌,他应该怎么写这个查询?

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
regex  
Mars Liu 已提交
12 13
## 答案

fix bug  
张志晨 已提交
14
```sql
M
regex  
Mars Liu 已提交
15 16 17 18 19 20 21 22 23
select * 
from goods
where name regexp '牛奶.*冰激凌';
```

## 选项

### A

fix bug  
张志晨 已提交
24
```sql
M
regex  
Mars Liu 已提交
25 26 27 28 29 30 31 32
select *
from goods
where name like '牛奶%冰激凌'
```


### B

fix bug  
张志晨 已提交
33
```sql
M
regex  
Mars Liu 已提交
34 35 36 37 38 39 40
select * 
from goods
where name like '牛奶.*冰激凌';
```

### C

fix bug  
张志晨 已提交
41
```sql
M
regex  
Mars Liu 已提交
42 43 44 45 46 47 48 49
select * 
from goods
where name regexp '牛奶冰激凌';
```

### D

所有都不对