gpt4 book ai didi

sql - 如何根据他的状态选择不同的数字

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

有这样的表:

create table test(num integer,state text,col1 integer);

和示例数据:

insert into test(num,state,col1) values(1234,'done',1),(1234,'done',2),(1234,'done',11),
(23123,'done',1),(23123,'notdone',1),(23123,'any_other_states',2131);

想要从这个表中选择不同的数字,其中状态只完成,例如输出必须是:1234我尝试这样的事情:

SELECT DISTINCT num
FROM test
WHERE state = 'done' and state not in('notdone','any_other_states')
GROUP BY num;

但是输出是1234和23123,怎么办?

最佳答案

在 PostgreSQL 中:

select num
from test
group by num
having bool_and(state = 'done')

https://www.postgresql.org/docs/current/static/functions-aggregate.html#FUNCTIONS-AGGREGATE-TABLE

关于sql - 如何根据他的状态选择不同的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43193019/

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