salary.md 1.5 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
# 工资最高的人

现有员工信息表如下:

```postgresql
create table employee
(
    id     serial primary key,
    name   text,
    dept   text,
    salary money
);
```

下面哪条查询,可以给出每个部门工资最高的前五个员工的 id, name, dept, salary 四项信息?

## 答案

```postgresql
select id, name, dept, salary
from (select id, name, dept, salary, rank() over (partition by dept order by salary desc) as r
      from employee) as t
where r <= 5;
```

## 选项

### 结构错误

```postgresql
select id, name, dept, max(salary) as salary
from employee
group by dept
having id < 6;
```

### 结构错误

```postgresql
select l.id, l.name, l.dept, l.salary
from employee as l
         join (select max(salary) as salary, dept
               from employee
               group by dept) as r
              on l.dept = r.dept and l.salary = r.salary
where count(r.id) <= 5;
```

### 结构错误

```postgresql
select l.id, l.name, l.dept, l.salary
from employee as l
         join (select max(salary, 5) as salary, dept
               from employee
               group by dept) as r
              on l.dept = r.dept and l.salary = r.salary
```

### 结构错误

```postgresql
select id, name, dept, salary, rank() over (partition by dept order by salary desc) as r
from employee
where r <= 5;
```

M
Mars Liu 已提交
68 69 70 71 72 73 74
### 结构错误

```postgresql
select id, name, dept, salary, rank() as r over (partition by dept order by salary desc)
from employee
where r <= 5;
```