如何计算 sqlite 中每个不同值有多少个重复项?
我有一个表:
ref,type
1,red
2,red
3,green
4,blue
5,black
6,black
我希望 sqlite 查询的结果是:
red,2
green,1
blue,1
black,2
我认为最难做的事情是找到一个与我的问题相匹配的问题?那么我确信答案就在眼前......
:)
I have a table:
ref,type
1,red
2,red
3,green
4,blue
5,black
6,black
I want the result of a sqlite query to be:
red,2
green,1
blue,1
black,2
I think the hardest thing to do is find a question to match my problem? Then I am sure the answer is around the corner....
:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我快速谷歌搜索“计算唯一值 sqlite3”一词,让我找到了这篇文章。但是,我试图计算唯一值的总数,而不是每个类别有多少重复项。
从上面克里斯的结果表中,我只想知道有多少种独特的颜色。这里的正确答案是四个[4]。
这可以使用以下方法完成
从表中选择计数(DISTINCT类型);
My quick google with the terms "count unique values sqlite3" landed me on this post. However, I was trying to count the overall number of unique values, instead of how many duplicates there are for each category.
From Chris's result table above, I just want to know how many unique colors there are. The correct answer here would be four [4].
This can be done using
select count(DISTINCT type) from table;
快速谷歌给了我这个: http://www.mail- archive.com/[电子邮件受保护]/msg38339.html
A quick google gave me this: http://www.mail-archive.com/[email protected]/msg38339.html