SQL语句如何根据第一张表查询第二张表的行数

2025-01-03 23:57:18
推荐回答(1个)
回答1:

//查询单个帖子的回帖数
select count(*) from 回帖表,发帖表 where 回帖表.贴子id=发帖表.帖子id
//查询所有帖子的回帖数
select 发帖表.帖子id,count(*) as 回帖数 from 回帖表,发帖表 where 回帖表.贴子id=发帖表.帖子id
group by 发帖表.帖子id