unique.md 880 字节
Newer Older
M
index  
Mars Liu 已提交
1 2 3 4
# 唯一约束

Goods 表结构如下:

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

Joe 需要确保同一个类型下没有重名的商品,他应该怎么做?

M
Mars Liu 已提交
18 19
<hr/>

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

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

M
index  
Mars Liu 已提交
25 26
## 答案

fix bug  
张志晨 已提交
27
```sql
M
index  
Mars Liu 已提交
28 29 30 31 32 33 34
alter table goods add unique index (category_id, name);
```

## 选项

### A

fix bug  
张志晨 已提交
35
```sql
M
index  
Mars Liu 已提交
36 37 38 39 40
alter table goods add index (category_id, name);
```

### B

fix bug  
张志晨 已提交
41
```sql
M
index  
Mars Liu 已提交
42 43 44 45 46
alter table goods add unique index (category_id + name);
```

### C

fix bug  
张志晨 已提交
47
```sql
M
index  
Mars Liu 已提交
48 49
alter table goods add unique index (concat(category_id, name));
```