gpt4 book ai didi

sql - MS-Access 中同一字段中两种类型值的计数

转载 作者:行者123 更新时间:2023-12-01 08:39:27 24 4
gpt4 key购买 nike

我有这张表customerDetail,其中有一个字段c_type,其中“a”代表“事件”,“d”代表“不活动”。现在我必须在同一个查询中找到它们的计数。
我使用了这些但没有结果。

SELECT Count(c_type) AS Active, Count(c_type) AS Not_Active  
FROM customerDetail
WHERE c_type="a" OR c_type="d"

当然我知道它显然看起来很脏,但我也试过这个,但这也没有用-

SELECT
Count(customerDetail.c_type) AS Active,
Count(customerDetail_1.c_type) AS Not_Active
FROM customerDetail INNER JOIN customerDetail AS customerDetail_1
ON customerDetail.Id=customerDetail_1.Id
WHERE (customerDetail.c_type="a") AND (customerDetail_1.c_type="d")

但这同样也没有帮助,所以谁能告诉我我应该如何知道同一查询中事件和非事件的计数?

最佳答案

select c_type, count(*)
from customer_detail
group by c_type

关于sql - MS-Access 中同一字段中两种类型值的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5770602/

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