gpt4 book ai didi

sql - 是否可以在有子句中检查两个以上的条件?

转载 作者:行者123 更新时间:2023-12-04 23:48:33 26 4
gpt4 key购买 nike

当我尝试以下查询时

select column2 
from table1
group by column2
having count(column3) = count(column1) and column5 in (1,2)

我收到此错误:

ORA-00979: not a GROUP BY expression
00979. 00000 - "not a GROUP BY expression"

我应该写什么才能得到结果,即满足两个条件的 column2

即(count(column3) = count(column1) and column5 in (5,6).

最佳答案

试试这个:

select column2
from table1
where column5 in (1,2)
group by column2
having count(column3) = count(column1)

关于sql - 是否可以在有子句中检查两个以上的条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26858970/

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