gpt4 book ai didi

mysql - 从 SQL 中具有 SOME status=0 的表中选择所有信息

转载 作者:行者123 更新时间:2023-11-29 04:40:36 24 4
gpt4 key购买 nike

我在MySQL数据库中有下表

account | status
1 | 1
1 | 0
1 | 0
2 | 0
2 | 0
2 | 0
3 | 1
3 | 1
3 | 1

我如何从此表中选择帐户的某些状态为零的所有信息?在这个例子中,结果应该是

account | status
1 | 1
1 | 0
1 | 0
2 | 0
2 | 0
2 | 0

因为 account.name=3 所有状态都是 1。

谢谢,弗拉基米尔

最佳答案

试试这个方法:

select account, status
from tab
where account in (select account
from tab
where status = 0)

Sql fiddle demo

关于mysql - 从 SQL 中具有 SOME status=0 的表中选择所有信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29841928/

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