total_index.md 871 字节
Newer Older
M
index  
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 全值匹配

Goods 表结构如下:

```mysql
create table goods(
    id int primary key auto_increment,
    category_id int,
    name varchar(256),
    price decimal(12, 4),
    stock int,
    upper_time timestamp
)
```

现在有大量根据商品名获取价格的查询`select price from goods where name = '...''`,Joe希望进行优化,那么他应该:

M
Mars Liu 已提交
18 19
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)

M
index  
Mars Liu 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
## 答案

```mysql
alter table goods add index (name, price);
```

## 选项

### A

将 name 和 price 合成一个字段。

### B

建立一个计算字段:

```mysql
alter table goods add summary varchar(1024) generated always as (concat(name, '(', 0.5, ')'));
```

### C

```mysql
alter table goods add index (concat(name, price));
```