如何获得表的层次结构,其中Manager的Manager-ID是他的Employee ID,并且有多个此类Manager?

时间:2018-10-04 11:13:01

标签: sql sql-server hierarchical-query

EMP1 (EID:EMP1 | MID:EMP1)
    EMP2 (EID:EMP2 | MID: EMP1)
EMP3 (EID:EMP3 | MID:EMP3)
    EMP4 (EID:EMP4 | MID:EMP3)
        EMP5 (EID:EMP5 | MID:EMP4)
        EMP6 (EID:EMP6 | MID:EMP4)
    EMP7 (EID:EMP7 | MID:EMP3)  
        EMP8 (EID:EMP8 | MID:EMP7)
            EMP9 (EID:EMP9 | MID:EMP8)

以上是我的员工层次结构。 EID-Employee_ID,MID-Manager_ID 如何在MSSQLSERVER中获取层次树? (请注意,这里没有常规锚点。)

0 个答案:

没有答案