mysql计算两列上的不同连接
我正在尝试计算两行中任意一行中的不同值。例如,一个包含 Fruit0、fruit1 列的表。我可以得到每一行的不同值的计数,但我想要它们的组合计数(注意这是一个愚蠢的人为示例)。
示例:
id | fruit0 | fruit1
--------------------
0 | apple | banana
1 | apple | pear
2 | apple | apple
3 | pear | banana
我想要类似的东西:
fruit | count
--------------
apple | 4
banana| 2
pear | 2
I am trying to count a distinct value in either of two rows. For instance, a table with columns fruit0, fruit1. I can get a count of the distinct values of either row, but I want a count of them combined (note this is a stupid contrived example).
Example:
id | fruit0 | fruit1
--------------------
0 | apple | banana
1 | apple | pear
2 | apple | apple
3 | pear | banana
I want something like:
fruit | count
--------------
apple | 4
banana| 2
pear | 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)