--由父项递归下级

with cte(id,parentid,text) as

(

--父项

select id,parentid,text from treeview where parentid = 450

union all

--递归结果集中的下级

select t.id,t.parentid,t.text from treeview as t

inner join cte as c

on t.parentid = c.id

)

select id,parentid,text from cte

---------------------

--由子级递归父项

with cte(id,parentid,text) as

(

--下级父项

select id,parentid,text from treeview where id = 450

union all

--递归结果集中的父项

select t.id,t.parentid,t.text from treeview as t

inner join cte as c

on t.id = c.parentid

)

select id,parentid,text from cte

相关文章:

  • 2021-09-12
  • 2021-11-23
  • 2021-08-14
  • 2022-01-22
  • 2021-12-01
  • 2022-01-18
  • 2021-07-29
  • 2022-12-23
猜你喜欢
  • 2022-03-05
  • 2022-12-23
  • 2021-10-28
  • 2021-06-25
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案