gpt4 book ai didi

sql - 如何在 SQL 中不显示计数列

转载 作者:行者123 更新时间:2023-12-02 06:29:53 25 4
gpt4 key购买 nike

这是我的查询:

SELECT  ID ,
COUNT(STATUS)
FROM tablename
WHERE STATUS = 'GREEN'
GROUP BY ID
HAVING COUNT(STATUS) > 3;

我需要结果只显示 ID 列,而不显示每行的计数。

最佳答案

只需将其从选择列表中删除:

select   ID -- count(STATUS) removed here
from TABLENAME
where STATUS = 'GREEN'
group by ID
having count(STATUS) > 3

关于sql - 如何在 SQL 中不显示计数列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41506871/

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