如何统计mysql中的不同列?
例如:
使用选择查询
我得到了以下结果:
columnA columnB
type1 typea
type2 typea
type3 typeb
type4 typec
type5 typed
type6 typed
type7 typed
使用DISTINCT
我只得到了不同结果
,但我也想得到<代码>每个不同的总数。
现在我想获得总数 就像
typea,typeb,typec and typed.
:
columnB total
typea 2
typeb 1
typec 1
typed 3
非常感谢!
E.g:
with the select query
I got below result:
columnA columnB
type1 typea
type2 typea
type3 typeb
type4 typec
type5 typed
type6 typed
type7 typed
with the DISTINCT
I only got the distinct result
,but I also want to get the total number
of each distinct.
and now I want to get the total number of
typea,typeb,typec and typed.
Just like:
columnB total
typea 2
typeb 1
typec 1
typed 3
Thank you very much!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
GROUP BY
按类型获取结果:这应该会准确地为您提供所需的结果。
You can use
GROUP BY
to get results by type:This should give you exactly the result you are looking for.