我有一张这样的桌子:
client msg_type msg_body id
------ -------- -------- ---
123 typeA success abc
123 typeB success abc
456 typeA success abc
456 typeB failure abc
123 typeA success abc
123 typeA success abc
789 typeA success def
789 typeB success def
等等
我想要这样的输出:
client diff id
------ ---- ---
123 2 abc
456 1 abc
789 0 def
diff
消息数量在哪里typeA:success
-typeB:success
消息。我可以使用以下方法获得 typeA 成功的计数:
select client, count(*) from mytable
where msg_type="typeA" and msg_body="success"
但是,我不知道如何在其中添加另一个计数(对于 typeB)并减去。我试过类似的东西:
select client, count(*) from mytable
where msg_type="typeA" and msg_body="success" - count(*)
from mytable where msg_type="typeB" and msg_body="success"
但当然它没有用,否则我不会在这里问。:) 有什么建议吗?
编辑:添加了另一列。我尝试了给出的两个建议,但它似乎只返回其中一个 id 的结果,而不是两者。
编辑#2:我尝试用以下方式包装 SELECT 查询:
select id, count(*) from (select ...) as anothertable where count_a_minus_count_b = 0;
我希望输出是这样的:
id count
--- -----
abc 2
def 1
其中 count 是 typeA:success 和 typeB:success 之差为 0 的客户端数量。