码迷,mamicode.com
首页 > 其他好文 > 详细

LinQ递归查询

时间:2015-08-25 21:19:40      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

  --由父项递归下级 
with cte(refid,pid,zname,code) 
as 
(--父项 
select refid,pid,zname,code from zuzhi where pid = 38 
union all 
--递归结果集中的下级 
select t.refid,t.pid,t.zname,t.code from zuzhi as t 
inner join cte as c on t.pid = c.refid 
) 
select refid,pid,zname,code from cte

 

LinQ递归查询

标签:

原文地址:http://www.cnblogs.com/lindaguoflh/p/4758357.html

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