gpt4 book ai didi

mysql - 计算查询中的总项目数

转载 作者:行者123 更新时间:2023-11-29 20:06:59 27 4
gpt4 key购买 nike

所以我想从这个系统中获取总项目 System Info

并在查询中检索它。

问题是系统不会自动有一列用于显示总项目。

我的代码如下所示:

(case when mu.master_unit_no is not null then
count(mu.master_unit_no)
end)
as 'Total M#s',


(case when mu.master_unit_no is null then
count(c.serial_no)
end)
as 'Total Serials'

但输出:

Query Result

如何让它看起来与系统中的内容相同。

(理想情况下,我想合并两列,以便“总项目”显示为 4)

出站案例编号:M#

车牌号:序列号

最佳答案

您本应在 Group by 中添加 master_unit_no,但事实并非如此。如果我没记错的话,你正在寻找这个

count(case when mu.master_unit_no is not null then mu.master_unit_no end) as 'Total M#s',
count(case when mu.master_unit_no is null then c.serial_no end) as 'Total Serials'

关于mysql - 计算查询中的总项目数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40309189/

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