0
我們有一個像這樣用樹形結構的表格:伯爵的後代行
Id Desc ParentID
===
A DescrA NULL
B DescrB A
C DescrC A
D DescrD C
E DescrE C
F DescrF E
我們需要返回的後代的數量(包括subdescendants)的特定ID的,類似的查詢:
select count(descendants) from Tablex where id='A' --result = 5
select count(descendants) from Tablex where id='B' --result = 0
select count(descendants) from Tablex where id='C' --result = 3
select count(descendants) from Tablex where id='E' --result = 1
我們已經看到它會作出「易」與CTE但不可能得到它的要點...
完美,謝謝! – VSP