gpt4 book ai didi

SQL select 计数为 1 个值

转载 作者:行者123 更新时间:2023-12-02 09:32:13 24 4
gpt4 key购买 nike

我有一个这样的表:

+---------+------------+--------+--------------+
| Id | Name | Status | Content_type |
+---------+------------+--------+--------------+
| 2960671 | PostJob | Error | general_url |
| 2960670 | auto_index | Done | general_url |
| 2960669 | auto_index | Done | document |
| 2960668 | auto_index | Error | document |
| 2960667 | auto_index | Error | document |
+---------+------------+--------+--------------+

我想计算每种类型中有多少个状态为“错误”,因此结果将是 1x generic_url2x document

我尝试过这样的事情:

SELECT COUNT(DISTINCT Content_type) from Indexing where Status = 'Error';

但我不知道如何从中获取 content_type

最佳答案

你想要这个

select Content_type, 
count(Status)
from Indexing
where Status='Error'
group by Content_type;

关于SQL select 计数为 1 个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31848698/

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