sqlserver 树结构递归
程序员文章站
2024-02-22 21:56:24
...
--获取当前及以下部门
Create proc GetCurrentAndUnderOrg
@orgId int
as
begin
WITH cte
AS
(
SELECT * ,0 AS level FROM Static_Organ WHERE [email protected]
UNION ALL
SELECT g.*,level+1 FROM Static_Organ g INNER JOIN cte
ON g.ParentOrgan=cte.OrganID
)
SELECT * FROM cte
end
上一篇: 电脑的一些基本快捷键和dos快捷键
下一篇: 在.NET中取得代码行数的方法