regex.md 475 字节
Newer Older
M
regex  
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
# 正则表达式

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

## 答案

```mysql
select * 
from goods
where name regexp '牛奶.*冰激凌';
```

## 选项

### A

```mysql
select *
from goods
where name like '牛奶%冰激凌'
```


### B

```mysql
select * 
from goods
where name like '牛奶.*冰激凌';
```

### C

```mysql
select * 
from goods
where name regexp '牛奶冰激凌';
```

### D

所有都不对