gpt4 book ai didi

mysql - 计数总和 MySQL

转载 作者:行者123 更新时间:2023-11-30 23:21:12 24 4
gpt4 key购买 nike

我有以下sql查询

 SELECT 
(SELECT count(cid) from A where uid=45 group by cid) as cats
(SELECT count(cid) from A where uid=45) as cats_total

第一个子选择产生 4 行并计算每个 cid 中的项目数。第二个子选择仅产生 1 行并计算项目总数。

我的问题出在第二个子选择上。 SQL 正在产生错误,因为它们的行数不同。是否可以进行调整,使第二个子选择有 4 行,或者第一个子选择产生的任意数量的行?

更新:让我进一步澄清我需要制作的表格

+------+------------+
| cats | cats_total |
+------+------------+
| 2 | 17 |
| 5 | 17 |
| 1 | 17 |
| 9 | 17 |
+------+------------+

最佳答案

或者,您可以使用UNION ALL

SELECT SUM(totals) grandTotal
FROM
(
SELECT count(cid) totals from A where uid=45 group by cid
UNION ALL
SELECT count(cid) totals from A where uid=45
) s

关于mysql - 计数总和 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15379510/

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