我想检索一个 id 的 parentid,如果该 parentid 有一个 parent,则再次检索它,依此类推。一种层次结构表。
id----parentid
1-----1
5-----1
47894--5
47897--47894
我是 sql server 的新手并尝试过,一些查询如下:
with name_tree as
(
select id, parentid
from Users
where id = 47897 -- this is the starting point you want in your recursion
union all
select c.id, c.parentid
from users c
join name_tree p on p.id = c.parentid -- this is the recursion
)
select *
from name_tree;
它只给了我一排。而且我想将这些记录插入到一个临时表变量中。我怎样才能做到这一点。提前致谢。抱歉问这个简单的问题(虽然不是对我)