create_index.md 967 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 创建索引

Joe 想给 Goods 表

fix bug  
张志晨 已提交
5
```sql
M
Mars Liu 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19
create table goods(
    id int primary key auto_increment,
    category_id int,
    name varchar(256),
    price decimal(12, 4),
    stock int,
    upper_time timestamp
)
```

的 category_id (类别)字段创建索引,便于根据类别查询商品。应该执行下面哪个语句?

*注意* 一个类别会包含多种商品。

M
Mars Liu 已提交
20 21
<hr/>

F
feilong 已提交
22
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill){target="_blank"}。
F
feilong 已提交
23

F
feilong 已提交
24 25
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
26

M
Mars Liu 已提交
27 28
## 答案

fix bug  
张志晨 已提交
29
```sql
30 31
create index idx_goods_category 
    on goods(category_id);
M
Mars Liu 已提交
32 33 34 35 36 37
```

## 选项

### A

fix bug  
张志晨 已提交
38
```sql
39 40
create unique index idx_goods_category 
    on goods(category_id);
M
Mars Liu 已提交
41 42 43 44
```

### B

fix bug  
张志晨 已提交
45
```sql
46 47
create index idx_goods_category 
    on goods(name);
M
Mars Liu 已提交
48 49 50 51
```

### C

fix bug  
张志晨 已提交
52
```sql
53 54
alter table goods 
    add unique index (category_id);
M
Mars Liu 已提交
55
```