Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_pg
提交
be1ed460
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看板
提交
be1ed460
编写于
11月 23, 2021
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fly on exercises
上级
28cf8c15
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
79 addition
and
1 deletion
+79
-1
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/config.json
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/config.json
+2
-1
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.json
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.json
+7
-0
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.md
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.md
+70
-0
未找到文件。
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/config.json
浏览文件 @
be1ed460
...
...
@@ -2,5 +2,5 @@
"node_id"
:
"pg-2e691ed3a847424eb887b40aca750c4e"
,
"keywords"
:
[],
"children"
:
[],
"export"
:
[]
"export"
:
[
"continuous"
]
}
\ No newline at end of file
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.json
0 → 100644
浏览文件 @
be1ed460
{
"type"
:
"code_options"
,
"author"
:
"刘鑫"
,
"source"
:
"continuous.md"
,
"notebook_enable"
:
false
}
\ No newline at end of file
data/3.PostgreSQL高阶/3.SQL高级技巧/1.递归查询/continuous.md
0 → 100644
浏览文件 @
be1ed460
# 获取连续区间
SmartMarket 交易所的系统中,所有订单在生成时,都从一个 PostgreSQL Sequence 中获取唯一的 序列号,完成交易计算后各个撮合程序将其插入如下的 orders 表中:
```
postgresql
create table orders
(
id integer primary key,
meta jsonb default '{}'::jsonb,
content jsonb default '{}'::jsonb
-- ignore other definitions...
);
```
后续的结算系统需要连续的获取订单,以便处理一些顺序敏感的业务。但是撮合发生在很多个异步节点上,它们只能保证最终会将 所有订单都保存到 orders 表,确保 id 列最终是连续的,但是最新插入的一段记录集有可能不连续。而我们希望结算系统成批
的读取数据,以优化性能,那么在结算系统有它最后处理的订单id的前提下,下面哪一个查询可以确保从这个id向前读取 id 连续 的一批订单?
## 答案
```
postgresql
with recursive r(id) as (select id
from orders
where id = $1
union
select d.id
from orders as d
join r on d.id = r.id + 1)
select orders.id, meta, content
from orders
join r on orders.id = r.id;
```
## 选项
### A
没有办法构造一个简单查询实现这个功能,因为它的数据过滤条件递归的依赖查询结果。
### B
```
postgresql
select data.id, meta, content
from orders
join orders as r on orders.id = r.id - 1
where id = $1;
```
### C
```
postgresql
select id, meta, content
from orders
where id in (select id from orders where id = id + 1);
```
### D
```
postgresql
with r as (select id
from orders
where id = $1
union
select d.id
from orders as d
join r on d.id = r.id + 1)
select orders.id, meta, content
from orders
join r on orders.id = r.id;
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录