gpt4 book ai didi

sql - Postgresql:子查询的替代方法可以使查询更高效?

转载 作者:行者123 更新时间:2023-11-29 14:26:14 28 4
gpt4 key购买 nike

所以我有下表的架构:

CREATE TABLE stages (
id serial PRIMARY KEY,
cid VARCHAR(6) NOT NULL,
stage varchar(30) NOT null,
status varchar(30) not null,
);

测试数据如下:

INSERT INTO stages (id, cid, stage, status) VALUES
('1', '1', 'first stage', 'accepted'),
('2', '1', 'second stage', 'current'),
('3', '2', 'first stage', 'accepted'),
('4', '3', 'first stage', 'accepted'),
('5', '3', 'second stage', 'accepted'),
('6', '3', 'third stage', 'current')
;

现在的用例是我们要为每个阶段查询此表,例如我们将查询此表以获取“第一阶段”,然后尝试获取所有这些cids 不存在于后续阶段,例如 'second stage':

结果集:

cid | status
2 | 'accepted'

在为'second stage' 运行查询时,我们将尝试获取所有那些在'third stage'< 中不存在的cids/strong> 等等。

结果集:

cid | status
1 | 'current'

目前,我们通过在 where 子句中创建一个 exists 子查询来实现这一点,但性能不是很好。

问题是,是否有比我们目前使用的方法更好的替代方法,或者我们是否需要专注于优化当前的方法?另外,我们可以做哪些进一步的优化来使 exists 子查询的性能更高?

谢谢!

最佳答案

你可以使用lead():

select s.*
from (select s.*,
lead(stage) over (partition by cid order by id) as next_stage
from stages s
) s
where stage = 'first stage' and next_stage is null;

关于sql - Postgresql:子查询的替代方法可以使查询更高效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57523974/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com