求Sql Server实现Oracle中的select * from tablename start with id=1 connect by prior id=parentid查询
有一个解决方案:withsubqry(id,parentid)as(selectid,parentidfromtablenamewhereid=1unionallsele...
有一个解决方案:
with subqry(id,parentid) as (select id,parentid from tablename where id=1 union all select tablename.id,tablename.parentid from tablename,subqry where tablename.parentid=subqry.id) select id from subqry
如果只是查询父节点下所有的后代节点,是可以完成的。但是有个问题,这里还需要联动查询,也就是说查到上述结果后,把这个结果当条件去其他表查询:
select * from othertable where treeid in (上述查询语句)
这样就不行了,请问在Sql Server中真的没有什么好办法可以对这样的树形表进行递归查询吗?如果可以怎么实现? 展开
with subqry(id,parentid) as (select id,parentid from tablename where id=1 union all select tablename.id,tablename.parentid from tablename,subqry where tablename.parentid=subqry.id) select id from subqry
如果只是查询父节点下所有的后代节点,是可以完成的。但是有个问题,这里还需要联动查询,也就是说查到上述结果后,把这个结果当条件去其他表查询:
select * from othertable where treeid in (上述查询语句)
这样就不行了,请问在Sql Server中真的没有什么好办法可以对这样的树形表进行递归查询吗?如果可以怎么实现? 展开
1个回答
2016-11-02
展开全部
with的公用表达式就是递归查询的,
select * from othertable where treeid in (select id from subqry
) 应该就可以了吧
select * from othertable where treeid in (select id from subqry
) 应该就可以了吧
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询