distinct.md 886 字节
Newer Older
M
having  
Mars Liu 已提交
1 2 3 4
# Distinct

Joe 想统计以下 goods 表

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

中的商品有多少种不同的价格,他应该如何写这条查询?

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

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

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

M
having  
Mars Liu 已提交
26 27
## 答案

fix bug  
张志晨 已提交
28
```sql
29 30
select count(distinct price) 
from goods;
M
having  
Mars Liu 已提交
31 32 33 34 35 36
```

## 选项

### A

fix bug  
张志晨 已提交
37
```sql
38 39
select count(distinct *) 
from goods;
M
having  
Mars Liu 已提交
40 41 42 43
```

### B

fix bug  
张志晨 已提交
44
```sql
45 46
select distinct count(price) 
from goods;
M
having  
Mars Liu 已提交
47 48 49 50
```

### C

fix bug  
张志晨 已提交
51
```sql
52 53
select count(price) 
from goods;
M
having  
Mars Liu 已提交
54 55 56 57
```

### D

fix bug  
张志晨 已提交
58
```sql
59 60
select distinct price 
from goods;
M
having  
Mars Liu 已提交
61
```