SQLserver2008使用表达式递归查询语句
发布时间:2020-12-12 12:55:22 所属栏目:MsSql教程 来源:网络整理
导读:--由父项递归下级? with cte(id,parentid,text)? as? (--父项? select id,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? )? s
--由父项递归下级? with cte(id,parentid,text)? as? (--父项? select id,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,text from cte? ---------------------? --由子级递归父项? with cte(id,text)? as? (--下级父项? select id,text from treeview where id = 450? union all? --递归结果集中的父项? select t.id,t.text from treeview as t? inner join cte as c on t.id = c.parentid? )? select id,text from cte
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |