id | title | pid |
---|---|---|
1 | 1级节点 | 0 |
2 | 2级节点 | 1 |
3 | 3级节点 | 2 |
4 | 4级节点 | 3 |
5 | 5级节点 | 4 |
下面上代码
----------sql server 递归查询---------- --查找上级所有节点 with uCte as ( select a.id,a.title,a.pid from tree_table a where id = 3--当前节点 union all select k.id,k.title,k.pid from tree_table k inner join uCte c on c.pid = k.id ) select * from uCte; --查找上级所有节点 with dCte as ( select a.id,a.title,a.pid from tree_table a where id = 3--当前节点 union all select k.id,k.title,k.pid from tree_table k inner join dCte c on c.id = k.pid ) select * from dCte;
更多关于SQL Server相关内容感兴趣的读者可查看本站专题:《SQL Server查询操作技巧大全》、《SQL Server存储过程技巧大全》、《SQL Server索引操作技巧大全》、《SQL Server常用函数汇总》及《SQL Server日期与时间操作技巧总结》
希望本文所述对大家SQL Server数据库程序设计有所帮助。