代碼如下:
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是從本部門向上遞歸(即查出本部門以下的部門包括本部門)
