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

SQLserver2008使用表达式递归查询(由父往子,由子往父)

时间:2015-01-29 09:17:20      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

SQLserver2008使用表达式递归查询语句

--由父项递归下级
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

SQLserver2008使用表达式递归查询(由父往子,由子往父)

标签:

原文地址:http://www.cnblogs.com/jx270/p/4258806.html

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