gpt4 book ai didi

php - 如何通过特定id计算评论总和

转载 作者:行者123 更新时间:2023-11-29 02:16:25 25 4
gpt4 key购买 nike

我有两个表,一个是 blog,其中包含标题和描述,而第二个是 comment,它显示与特定 blog_id 相关的所有评论.

blog_idblog 表的主键,同时用作 comment 表中的外键。

最佳答案

假设你的博客id是1

SELECT comments.blog_id AS blog_id, count(comments.blog_id) AS total_comment from comments where comments.blog_id = 1 group by comments.blog_id

关于php - 如何通过特定id计算评论总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38950950/

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