gpt4 book ai didi

mysql - 如何获取其中具有不同值的列的计数

转载 作者:行者123 更新时间:2023-12-04 14:03:22 25 4
gpt4 key购买 nike

<表类="s-表"><头>代理名位置qa_agent<正文>首先致命管理员第二个非致命管理员第二个非致命管理员

我需要这样的输出

<表类="s-表"><头>代理名qa agent数量计数致命计数计数非致命<正文>首先110第二个102

最佳答案

您可以尝试使用条件聚合

select agent_name,
count(distinct qa_agent) as Count_qa_agent,
count(case when position='fatal' then 1 end) as Count_fatal,
count(case when position='non fatal' then 1 end) as Count_Non_fatal
from tablename
group by agent_name

关于mysql - 如何获取其中具有不同值的列的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69279844/

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