gpt4 book ai didi

MySQL:计算某些值

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

选择 报告站 从 报告 左连接 channel 在 MD5(igmpurl)=reporting.station 在哪里 reporting.station!="n/a" 订购方式 姓名;

生成此表:

Query like it is

现在我想计算每个元素的数量,应该是这样的:

Result like I'd would like to have it

注意:我知道 COUNT(station) 会返回行数 (20) 但不是我想要的.

知道如何在 MySQL (InnoDB) 中解决这个问题吗?非常感谢和问候

最佳答案

SELECT
reporting.station, COUNT(reporting.station)
FROM
reporting
LEFT JOIN
channel
ON
MD5(igmpurl)=reporting.station
WHERE
reporting.station!="n/a"
GROUP BY reporting.station
ORDER BY
name;

试试这个。

关于MySQL:计算某些值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5548388/

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