Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_pg
提交
46adbcbf
S
skill_tree_pg
项目概览
CSDN 技术社区
/
skill_tree_pg
通知
9
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_pg
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
46adbcbf
编写于
12月 02, 2021
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add window function
上级
b63b2b02
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
68 addition
and
1 deletion
+68
-1
.pre-commit-config.yaml
.pre-commit-config.yaml
+1
-1
data/3.PostgreSQL高阶/3.SQL高级技巧/2.Window Function/salary.md
data/3.PostgreSQL高阶/3.SQL高级技巧/2.Window Function/salary.md
+67
-0
未找到文件。
.pre-commit-config.yaml
浏览文件 @
46adbcbf
repos
:
-
repo
:
git@codechina.csdn.net:csdn/skill_tree_hook.git
rev
:
15a330214a4d7c2e0c0e42b5dfc3121a56f4dc23
rev
:
9430721405a57a809c0d93170fe307a89d979a4b
hooks
:
-
id
:
pre-commit
verbose
:
true
\ No newline at end of file
data/3.PostgreSQL高阶/3.SQL高级技巧/2.Window Function/salary.md
0 → 100644
浏览文件 @
46adbcbf
# 工资最高的人
现有员工信息表如下:
```
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;
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录