sql – 递归选择?

前端之家收集整理的这篇文章主要介绍了sql – 递归选择?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下表结构:

所以每个论坛帖子都有一个父母,父母也有一个父母(根帖子除外)等.
我需要的是得到一个孩子的总数,包括他的孩子的孩子,孙子女的孩子等等.

现在我有一个简单的选择返回直接的孩子:

select count(*) as child_count 
from forumposts 
where parent_forum_post_id = $criteria.fid

我甚至不确定这是通过sql可行的,但我是sql的初学者,所以我想也许有人可以给出一些想法.

任何帮助表示赞赏.谢谢.

解决方法

这应该这样做:
with recursive all_posts (id,parentid,root_id) as 
(
  select t1.id,t1.parent_forum_post_id as parentid,t1.id as root_id
  from forumposts t1
  where t1.parent_forum_post_id is null

  union all

  select c1.id,c1.parent_forum_post_id as parentid,p.root_id
  from forumposts c1
    join all_posts p on p.id = c1.parent_forum_post_id
)
select root_id,count(*)
from all_posts
order by root_id;

您可以通过修改t1.parent_forum_post_id为null的条件来更改“起始”点.

原文链接:https://www.f2er.com/mssql/83386.html

猜你在找的MsSQL相关文章