SQL查询计算对象中每个元素的数量

发布于 12-05 19:28 字数 382 浏览 0 评论 0原文

我有一个像这样的数据库表:

Room Name     ||     Animal
----------------------------
Room1 || Cat
Room1 || Dog
Room1 || Dog
Room2 || Cat
Room2 || Cat
Room2 || Dog
Room2 || Dog

我想用 SQL 查询读取这个表,结果我想计算房间里每只动物的数量:(

Room1: 1 cat 2 dog
Room2: 2 cats 2 dog

输出格式并不重要)

是否有一个 SQL 查询可以帮助?或者我应该阅读整个表格并以编程方式过滤它?

感谢您的帮助

I have a database table like this:

Room Name     ||     Animal
----------------------------
Room1 || Cat
Room1 || Dog
Room1 || Dog
Room2 || Cat
Room2 || Cat
Room2 || Dog
Room2 || Dog

I want to read this table with a SQL query and as result I want to count the number of each animal in the room:

Room1: 1 cat 2 dog
Room2: 2 cats 2 dog

(The output format doesn't matter)

Is there a SQL query that can help? Or should I read the whole table and filter it programatically?

Thank you for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

烟织青萝梦2024-12-12 19:28:33
SELECT [Room Name], [Animal], COUNT(*) FROM TableName GROUP BY [Room Name], [Animal]

这将返回

Room 1 | Cat | 1
Room 1 | Dog | 2
Room 2 | Cat | 2
Room 2 | Dog | 2
SELECT [Room Name], [Animal], COUNT(*) FROM TableName GROUP BY [Room Name], [Animal]

This would return

Room 1 | Cat | 1
Room 1 | Dog | 2
Room 2 | Cat | 2
Room 2 | Dog | 2
泪之魂2024-12-12 19:28:33
select room_name, animal, count(*)
from table 
group by room_name, animal
select room_name, animal, count(*)
from table 
group by room_name, animal
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文