MYSQL 统计关联的记录数

发布于 2024-11-01 01:32:00 字数 93 浏览 0 评论 0原文

假设我有一张猫表和一张饲养员表,其中有一个饲养员与多只猫的关系。我如何编写一个查询,连同帽子颜色、身高等典型属性,我可以计算每个牧民有多少只猫,其中每个猫牧民都是一条记录?

Suppose I have a cat table and a catherder table with a one catherder to many cats relationship. How would I write a query that along with typical attributes like color of hat, height, etc, I could have a count of how many cats each herder has where each cat herder is one record?

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

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

发布评论

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

评论(2

红焚 2024-11-08 01:32:00
SELECT catherder.*, count(cat.id) AS cats_count
FROM catherder join cat
     on catherder.id = cat.catherder_id
SELECT catherder.*, count(cat.id) AS cats_count
FROM catherder join cat
     on catherder.id = cat.catherder_id
素衣风尘叹 2024-11-08 01:32:00

这应该可以解决问题(未经测试)

SELECT color,height,COUNT(cat.id) AS cats FROM 
cats RIGHT JOIN catherder ON cats.id = catherder.id GROUP BY catherder.id;

This should do the trick (not tested)

SELECT color,height,COUNT(cat.id) AS cats FROM 
cats RIGHT JOIN catherder ON cats.id = catherder.id GROUP BY catherder.id;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文