当前 SQL 语句:
SELECT count(installUserID) as userCount
FROM installUsers
group by installationID
电流输出:
userCount
4
2
1
1
1
2
4
1
3
1
我正在尝试计算userCount
1 和 2 等的次数...
所需输出的示例:
userCount = 1, 5 times
userCount = 2, 2 times
userCount = 3, 1 times
userCount = 4, 2 times
我环顾了互联网,我想我可以用聚合函数做一些事情,也许用grouping
,但我仍然不清楚如何用纯 sql 来实现它。