码迷,mamicode.com
首页 > 数据库 > 详细

sqlserver查询指定树形结构的所有子节点

时间:2018-09-08 22:41:36      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:tar   baidu   https   target   lse   结构   test   class   ref   

用标准sql的with实现递归查询

with subqry(id,name,pid) as (
  select id,name,pid from test1 where id = 5 --指定id
  union all
  select test1.id,test1.name,test1.pid from test1,subqry where test1.pid = subqry.id
)
select* from subqry;

sqlserver查询指定树形结构的所有子节点

标签:tar   baidu   https   target   lse   结构   test   class   ref   

原文地址:https://www.cnblogs.com/Fooo/p/9610286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!