gpt4 book ai didi

postgresql - Postgres 选择 'at least' 项

转载 作者:行者123 更新时间:2023-11-29 12:18:45 25 4
gpt4 key购买 nike

我想选择要发布的评论,先于特定的 commentId,但无论如何我都希望在结果中有至少 5 条评论。

所以如果少于 5 条评论是 sql:SELECT * FROM comments WHERE id >= :comment_id,我必须再做一次选择 SELECT * FROM comments LIMIT 5.

是否可以在一个请求中得到相同的逻辑?

最佳答案

with c as (
select count(*) as c
from comments
where id >= :comment_id
)
select *
from comments
where id >= :comment_id
union all
(
select *
from comments
where id < :comment_id
order by id desc
limit greatest(5 - (select c from c), 0)
)
;

关于postgresql - Postgres 选择 'at least' 项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38706909/

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