sql Bom 递归查询:
with t as(select * from Department where id=6union allselect a.* from Department a,t where a.ParentId=t.id)select * from t