gpt4 book ai didi

只有当所有行都是 WHERE 的值时,MySQL 才返回单行

转载 作者:行者123 更新时间:2023-11-29 03:32:33 25 4
gpt4 key购买 nike

我有这样一个数据集:

col1    col2
John 1
John 1
Emily 1
Emily 2

一个简单的 select distinct col1 from table where col2 = 1 返回 John 和 Emily。

我想要一个只返回 John 的查询,因为 Emily 至少还有一行 col2 不等于 1。

有什么想法吗?

最佳答案

尝试使用 having 子句:

select col1 
from table
group by col1
having count(distinct col2) = 1
and min(col2) = 1

编辑

Salman 的回答看起来也不错:

select col1 
from table
group by col1 1
having count(*) = count(case when col2 = 1 then 1 else null end)

关于只有当所有行都是 WHERE 的值时,MySQL 才返回单行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28431553/

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