1. 程式人生 > >SQL2008+ 根據子類ID來查詢最大級父類ID

SQL2008+ 根據子類ID來查詢最大級父類ID

遞迴
2008可以在幫助文件搜尋CTE


with cte as
(
  select PraentID from tb where [email protected]
  union all
  select a.PraentID from tb a join cte b on a.ID=b.PraentID where PraentID is not null  
)

select * from cte