mysql 如何使用SQL对数据进行分组和计数以获得特定的输出?[关闭]

2jcobegt  于 2023-05-28  发布在  Mysql
关注(0)|答案(1)|浏览(131)

已关闭,此问题需要details or clarity。目前不接受答复。
**想改善这个问题吗?**通过editing this post添加详细信息并澄清问题。

5天前关闭。
Improve this question
在SQL中查询以获得给定的输出?
| 客户名称|设备|品牌|
| - -----|- -----|- -----|
| ‘a’|'settopbox'|'airtel'|
| ‘a’|'settopbox'|‘碟’|
| ‘a’|'settopbox'|“信赖”|
| 'B'|'settopbox'|'airtel'|
| d| 'settopbox'|'airtel'|
| d| 'settopbox'|‘碟’|
| d| 'settopbox'|“信赖”|
| d| 'settopbox'|“哈思韦”|
输出:
| 用户|设备|
| - -----|- -----|
| 3| 3|
| 一个|一个|
| 4| 4|
我正在分组尝试,但无法完全解决。

qjp7pelc

qjp7pelc1#

比如

select count(cust_name) as users, count(brand) as devices 
from [table name] 
group by users

相关问题