gpt4 book ai didi

sql - 在 postgresql 中通过 max(col) 获取行过滤

转载 作者:行者123 更新时间:2023-11-29 12:43:00 24 4
gpt4 key购买 nike

我正在使用 postgresql,但我不熟悉它。这段代码有效,但我想知道我是否可以用更直接的方式编写它。这里我join bar是为了在子查询中加入bar。我希望有一些简单的东西,比如 select * from bar group by baz using max(z)

select *
from foo f
join bar b on(f.baz=b.baz AND b.z in (select max(z) from bar group by baz))
where uid1 = 120

最佳答案

只需使用distinct on:

select distinct on (f.baz) *
from foo f join
bar b
on f.baz = b.baz
where uid1 = 120
order by f.baz, b.z desc;

关于sql - 在 postgresql 中通过 max(col) 获取行过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39748563/

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