all.md 1.4 KB
Newer Older
M
all  
Mars Liu 已提交
1 2 3 4
# ALL

Joe 想从员工表

fix bug  
张志晨 已提交
5
```sql
M
all  
Mars Liu 已提交
6 7
create table employee(
    id int primary key auto_increment,
M
Mars Liu 已提交
8
    dept_id int,
M
all  
Mars Liu 已提交
9 10 11 12 13 14 15
    name varchar(256),
    post varchar(16)
)
```

中找出所有其所在部门没有助理(post 为 `assistant`)的员工信息。由于 Joe 没有其它表的查询权限,他只能查询员工表,这个查询应该是:

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

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

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

M
all  
Mars Liu 已提交
23 24
## 答案

fix bug  
张志晨 已提交
25
```sql
M
all  
Mars Liu 已提交
26 27
select id, name, dept 
from employee as o
28 29 30 31
where 'assistant' != 
      all(select post 
          from employee as i 
          where o.dept = i.dept); 
M
all  
Mars Liu 已提交
32 33 34 35 36 37
```

## 选项

### A

fix bug  
张志晨 已提交
38
```sql
M
all  
Mars Liu 已提交
39 40
select id, name, dept 
from employee as o
41 42 43 44
where 'assistant' = 
      all(select post 
          from employee as i 
          where o.dept = i.dept); 
M
all  
Mars Liu 已提交
45 46 47 48
```

### B

fix bug  
张志晨 已提交
49
```sql
M
all  
Mars Liu 已提交
50 51
select id, name, dept 
from employee as o
52 53 54 55
where 'assistant' != 
      all(select post 
          from employee as i 
          where o.dept = i.dept); 
M
all  
Mars Liu 已提交
56 57 58
```

### C
fix bug  
张志晨 已提交
59
```sql
M
all  
Mars Liu 已提交
60 61
select id, name, dept 
from employee as o
62 63 64
where 'assistant' != 
      all(select post 
          from employee as i); 
M
all  
Mars Liu 已提交
65 66 67 68
```

### D

fix bug  
张志晨 已提交
69
```sql
M
all  
Mars Liu 已提交
70 71
select id, name, dept 
from employee as o
72 73 74 75
where 'assistant' != 
      ANY(select post 
          from employee as i 
          where o.dept = i.dept); 
M
all  
Mars Liu 已提交
76
```