geo_index.md 1.0 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 几何索引

Goods 数据库中有一个 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,
    location GEOMETRY
      -- ...
)
```

现在 Joe 要给 location 字段加上几何索引,他应该怎么做?

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 27 28
alter table shop 
    modify location  GEOMETRY not null;
alter table shop 
    add INDEX geo_index(location);
M
Mars Liu 已提交
29 30 31 32 33 34
```

## 选项

### A

fix bug  
张志晨 已提交
35
```sql
36 37
alter table shop 
    add INDEX geo_index(location);
M
Mars Liu 已提交
38 39 40 41
```

### B

fix bug  
张志晨 已提交
42
```sql
43 44
alter table shop 
    add INDEX location;
M
Mars Liu 已提交
45 46 47 48
```

### C

fix bug  
张志晨 已提交
49
```sql
50 51 52 53
alter table shop 
    modify location  GEOMETRY not null;
alter table shop 
    add INDEX location;
M
Mars Liu 已提交
54 55 56 57
```

### D

fix bug  
张志晨 已提交
58
```sql
59 60 61 62
alter table shop 
    modify location  GEOMETRY not null;
alter table shop 
    add INDEX location;
M
Mars Liu 已提交
63
```