文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>sql2008digui

sql2008digui

时间:2011-04-27  来源:bandrui

--由父项递归下级
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
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载