Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_oceanbase
提交
2221abbc
S
skill_tree_oceanbase
项目概览
CSDN 技术社区
/
skill_tree_oceanbase
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
2221abbc
编写于
11月 04, 2021
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add max salary and lost id
上级
239a6a42
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
132 addition
and
1 deletion
+132
-1
data/3.OceanBase高阶/3.编程和查询/3.数据分析/config.json
data/3.OceanBase高阶/3.编程和查询/3.数据分析/config.json
+6
-1
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.json
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.json
+6
-0
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.md
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.md
+62
-0
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.json
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.json
+6
-0
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.md
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.md
+52
-0
未找到文件。
data/3.OceanBase高阶/3.编程和查询/3.数据分析/config.json
浏览文件 @
2221abbc
{
"keywords"
:
[],
"node_id"
:
"oceanbase-4977bf7616784bfbac4bf88c8a064375"
,
"title"
:
"数据分析"
"title"
:
"数据分析"
,
"export"
:
[
"max_salary.json"
,
"lost_id.json"
]
}
\ No newline at end of file
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.json
0 → 100644
浏览文件 @
2221abbc
{
"type"
:
"code_options"
,
"author"
:
"刘鑫"
,
"source"
:
"lost_id.md"
}
\ No newline at end of file
data/3.OceanBase高阶/3.编程和查询/3.数据分析/lost_id.md
0 → 100644
浏览文件 @
2221abbc
# 查找缺失id
一个关系型数据库中,有一个表 list,主键是自增 id。形如:
```
sql
$
select
*
from
list
id
,
...
----------
1
2
3
...
```
其中某一行被删除了(不在行首或行尾),哪一条查询能把被删除的哪一行的id找到?
## 答案
```
sql
select
l
.
id
from
(
select
id
-
1
as
id
from
list
)
as
l
left
join
list
as
r
on
l
.
id
=
r
.
id
where
r
.
id
is
null
and
l
.
id
>
0
;
```
## 选项
### 没有处理边界
```
sql
select
l
.
id
from
(
select
id
-
1
as
id
from
list
)
as
l
left
join
list
as
r
on
l
.
id
=
r
.
id
where
r
.
id
is
null
;
```
### 没有取外连接
```
sql
select
l
.
id
from
(
select
id
-
1
as
id
from
list
)
as
l
join
list
as
r
on
l
.
id
=
r
.
id
where
r
.
id
is
null
and
l
.
id
>
0
;
```
### 没有取外连接
```
sql
select
l
.
id
from
(
select
id
-
1
as
id
from
list
)
as
l
join
list
as
r
on
l
.
id
=
r
.
id
where
r
.
id
is
null
and
l
.
id
>
0
;
```
\ No newline at end of file
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.json
0 → 100644
浏览文件 @
2221abbc
{
"type"
:
"code_options"
,
"author"
:
"刘鑫"
,
"source"
:
"max_salary.md"
}
\ No newline at end of file
data/3.OceanBase高阶/3.编程和查询/3.数据分析/max_salary.md
0 → 100644
浏览文件 @
2221abbc
# 寻找工资最高的人
有这样一个表:
```
sql
create
table
employee
(
id
integer
auto_increment
primary
key
,
name
varchar
(
256
),
department
varchar
(
256
),
salary
integer
);
```
下列哪个选项可以找出每个部门工资最高的人,并给出这个人的id,姓名,部门和工资信息?
## 答案
```
sql
select
l
.
id
,
l
.
name
,
l
.
department
,
l
.
salary
from
employee
as
l
join
(
select
department
,
max
(
salary
)
as
salary
from
employee
group
by
department
)
as
r
on
l
.
department
=
r
.
department
and
l
.
salary
=
r
.
salary
```
## 选项
### 分组错误
```
sql
select
id
,
name
,
department
,
salary
from
employee
group
by
department
having
salary
=
max
(
salary
);
```
### 结构错误
```
sql
select
id
,
name
,
department
,
max
(
salary
)
from
employee
group
by
department
;
```
### 结构错误
```
sql
select
id
,
name
,
department
,
max
(
salary
)
from
employee
where
salary
=
max
(
salary
);
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录