SqlServer递归查询

最近整理字典,频繁用到递归查询,老是记不住,留个代码以后备用!


 with cte as 

(select Zdxmc ,(select Zdxmc from GC_Sys_Zdx where Zdxid = a.Parentid) as 'Parent',a.Parentid from GC_Sys_Zdx a where Bz = '现从事专业'
 union all 

select b.Zdxmc,(select Zdxmc from GC_Sys_Zdx where Zdxid = b.Parentid) as 'Parent',b.Parentid from  cte,GC_Sys_Zdx b where cte.Parentid = b.Zdxid

)

 select *  from cte 

发布了19 篇原创文章 · 获赞 7 · 访问量 3万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章