sql語句遞歸查詢


代碼如下:

View Code
 1 with temp(nodeid,nodename,parentid) as
2 (
3 select ou.nodeid,ou.nodename,ou.parentid from OU ou where ou.parentid=(select parentid from OU where nodeid ='010201')and ou.nodeid='010201'
4 union all
5 select ou.nodeid,ou.nodename,ou.parentid from OU ou,temp tm where ou.nodeid=tm.parentid
6
7 )
8 select * from temp
9 go
10 注:ou.nodeid=tm.parentid是從本部門向上遞歸(即查出本部門以上的部門包括本部門)
11 ou.parentid=tm.nodeid是從本部門向上遞歸(即查出本部門以下的部門包括本部門)

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM