gpt4 book ai didi

sql - 如何从多表查询中进行COUNT(*)?

转载 作者:行者123 更新时间:2023-12-02 12:29:03 24 4
gpt4 key购买 nike

我有两个表,“片段”和“评论”。 Snippets 有一个 Id 列,Comments 有一个 SnippetId 列。

我想计算每个片段的评论数量。

我尝试过这个:

   SELECT
S.Id,
S.Title,
COUNT(*) AS CommentCount
FROM
Snippets S,
Comments C
WHERE
S.Id = C.SnippetId

但是它不起作用。它返回评论总数,并且只返回一行。

我想要这样的结果:

Id | Title | CommentCount
1 | Test | 314
2 | Test2 | 42

我怎样才能实现这个目标?

最佳答案

你几乎猜对了;您只是缺少一个 GROUP BY 子句:

SELECT
S.Id,
S.Title,
COUNT(*) AS CommentCount
FROM
Snippets S,
Comments C
WHERE
S.Id = C.SnippetId
GROUP BY S.Id, S.Title

关于sql - 如何从多表查询中进行COUNT(*)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7545968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com