full_text_index.md 816 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 全文索引

Shop 表的部分字段如下:

fix bug  
张志晨 已提交
5
```sql
M
Mars Liu 已提交
6 7 8 9 10 11 12 13 14
create table shop (
    id int primary key auto_increment,
    description varchar(8000)
      -- ...
)
```

现在 Joe 要给 description 字段加上全文索引,他应该怎么做?

M
Mars Liu 已提交
15 16
<hr/>

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

F
feilong 已提交
19 20
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
21

M
Mars Liu 已提交
22 23
## 答案

fix bug  
张志晨 已提交
24
```sql
25 26
alter table shop 
    add fulltext(description);
M
Mars Liu 已提交
27 28 29 30 31 32
```

## 选项

### A

fix bug  
张志晨 已提交
33
```sql
34 35
alter table shop 
    add index fulltext(description);
M
Mars Liu 已提交
36 37 38 39
```

### B

fix bug  
张志晨 已提交
40
```sql
41 42
alter table shop 
    create fulltext(description);
M
Mars Liu 已提交
43 44 45 46
```

### C

fix bug  
张志晨 已提交
47
```sql
48 49
alter table shop 
    alter description add fulltext(description);
M
Mars Liu 已提交
50
```