如何计算 sqlite 中每个不同值有多少个重复项?

发布于 2024-10-30 05:37:15 字数 237 浏览 1 评论 0原文

我有一个表:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゞ花落谁相伴 2024-11-06 05:37:15

我快速谷歌搜索“计算唯一值 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;

So尛奶瓶 2024-11-06 05:37:15

快速谷歌给了我这个: http://www.mail- archive.com/[电子邮件受保护]/msg38339.html

select type, count(type) from table group by type;

A quick google gave me this: http://www.mail-archive.com/[email protected]/msg38339.html

select type, count(type) from table group by type;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文