gpt4 book ai didi

postgresql - psql中选择满足某组条件的行

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

给出下表:

 id  |  value 
---+---------
1 | 1
1 | 0
1 | 3
2 | 1
2 | 3
2 | 5
3 | 2
3 | 1
3 | 0
3 | 1

我想要下表:

 id  |  value 
---+---------
1 | 1
1 | 0
1 | 3
3 | 2
3 | 1
3 | 0
3 | 1

该表包含具有最小 0 的id。我已经尝试使用 existhaving 但没有成功。

最佳答案

试试这个:

select * from foo where id in (SELECT id FROM foo GROUP BY id HAVING MIN(value) = 0) 

或者那个(有窗口函数)

select * from 
(select *,min(value) over (PARTITION BY id) min_by_id from foo) a
where min_by_id=0

关于postgresql - psql中选择满足某组条件的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38255990/

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