sqlserver表分区缺点(SQL Server 公用表表达式CTE实现递归的方法)
类别:数据库 浏览量:2348
时间:2021-11-05 14:39:33 sqlserver表分区缺点
SQL Server 公用表表达式CTE实现递归的方法公用表表达式简介:
公用表表达式 (CTE) 可以认为是在单个 SELECT、INSERT、UPDATE、DELETE 或 CREATE VIEW 语句的执行范围内定义的临时结果集。CTE 与派生表类似,具体表现在不存储为对象,并且只在查询期间有效。与派生表的不同之处在于,公用表表达式 (CTE) 具有一个重要的优点,那就是能够引用其自身,从而创建递归 CTE。递归 CTE 是一个重复执行初始 CTE 以返回数据子集直到获取完整结果集的公用表表达式。
下面先创建一个表,并插入一些数据:
create table Role_CTE ( Id int not null, Name nvarchar(32) not null, ParentId int not null ) insert into Role_CTE(Id,Name,ParentId) select '1','超级管理员','0' union select '2','管理员A','1' union select '3','管理员B','2' union select '4','会员AA','2' union select '5','会员AB','2' union select '6','会员BA','3' union select '7','会员BB','3' union select '8','用户AAA','4' union select '9','用户BBA','7' -- 创建一个复合聚集索引 create clustered index Clu_Role_CTE_Index on Role_CTE(Id,ParentId) with ( pad_index=on, fillfactor=50, drop_existing=off, statistics_norecompute=on ) select * from Role_CTE
查找指定节点的所有子孙节点:
使用普通 sql 语句实现:
declare @level int declare @node int declare @ResTab table ( node int not null, lv int not null ) set @level=0 -- 表示初始的等级 set @node=3 --表示初始的节点ID,即从指定的哪个节点开始查找 insert into @ResTab -- 为表变量插入初始的数据 select Id,@level from Role_CTE where Id=@node while(@@ROWCOUNT>0) begin set @level=@level+1 insert into @ResTab select b.Id,@level from @ResTab a join Role_CTE b on a.node=b.ParentId and lv=@level-1 -- join 等于 inner join(内连接)和自连接 end select a.node,b.Name,a.lv from @ResTab a left join Role_CTE b on a.node=b.Id
以上是根据指定节点ID(3),查找父节点ID(即字段 ParentId)等于指定的节点ID,如果有就插入,并继续循环。
PS:lv=@level-1 是重点,不然会进入死循环,作用就是限制只插入一次。
如果需要限制循环的次数,即递归的层数,那么只需要在 while 条件里面添加一个限制即可。如下:
declare @level int declare @node int declare @num int declare @ResTab table ( node int not null, lv int not null ) set @level=0 -- 表示初始的等级 set @node=3 --表示初始的节点ID,即从指定的哪个节点开始查找 set @num=1 -- 指定递归层级,即循环的次数 insert into @ResTab -- 为表变量插入初始的数据 select Id,@level from Role_CTE where Id=@node while(@@ROWCOUNT>0 and @level<@num) begin set @level=@level+1 insert into @ResTab select b.Id,@level from @ResTab a join Role_CTE b on a.node=b.ParentId and lv=@level-1 -- join 等于 inner join(内连接)和自连接 end select a.node,b.Name,a.lv from @ResTab a left join Role_CTE b on a.node=b.Id
当然,如果指定了循环次数,就可以不用 while 判断语句的 @@rowcount>0 了。
使用 SQL CTE 实现:
declare @node int set @node=3; with temp_cte as ( select Id,Name,0 lv -- 查询出“根节点”,即指定的起始节点 from Role_CTE where Id=@node union all select b.Id,b.Name,a.lv+1 from temp_cte a join Role_CTE b on a.Id=b.ParentId ) select * from temp_cte
使用 CTE 控制递归的层数,与上面类似。如下:
declare @node int declare @num int set @node=3; set @num=1; with temp_cte as ( select Id,Name,0 lv -- 查询出“根节点”,即指定的起始节点 from Role_CTE where Id=@node union all select b.Id,b.Name,a.lv+1 from temp_cte a join Role_CTE b on a.Id=b.ParentId and a.lv<@num --控制递归层数 ) select * from temp_cte
查找指定节点的所有祖先节点:
使用普通 sql 语句实现:
declare @level int declare @node int declare @num int declare @ResTab table ( node int not null, lv int not null ) set @level=0 -- 表示初始的等级 set @node=8 --表示初始的节点ID,即从指定的哪个节点开始查找 set @num=2 -- 指定递归层级,即循环的次数 while(@level<=@num and @node is not null) -- 如果为空就表示没有查到父级了 begin insert into @ResTab select @node,@level set @level=@level+1 select @node=ParentId from Role_CTE where Id=@node end select a.node,b.Name,a.lv from @ResTab a left join Role_CTE b on a.node=b.Id
使用 SQL CTE 实现:
declare @node int declare @num int set @node=8; set @num=2; with temp_cte as ( select Id,Name,ParentId,0 lv -- 查询出“根节点”,即指定的起始节点 from Role_CTE where Id=@node union all select b.Id,b.Name,b.ParentId,a.lv+1 from temp_cte a join Role_CTE b on a.ParentId=b.Id and a.lv < @num --控制递归层数 ) select * from temp_cte
以上所述是小编给大家介绍的SQL Server 公用表表达式(CTE)实现递归的方法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的,在此也非常感谢大家对开心学习网网站的支持!
您可能感兴趣
- 数据库sqlserver定时任务(SQL Server 2005作业设置定时任务)
- sqlserver分组查询(sql server如何利用开窗函数over进行分组统计)
- sqlserver怎么写判断条件(SQL Server之SELECT INTO 和 INSERT INTO SELECT案例详解)
- sqlserver数据回退(SQLServer数据库处于恢复挂起状态的解决办法)
- sqlserver列数据拆分(SQL Server基础之行数据转换为列数据)
- sqlserver如何生成xml文件(实现SQL Server 原生数据从XML生成JSON数据的实例代码)
- sql server 进阶(SqlServer AS的用法)
- sqlserver备份整表数据的语句(SqlServer批量备份多个数据库且删除3天前的备份)
- sqlserver2016使用教程(SQL Server 2016 Alwayson新增功能图文详解)
- sqlserver安装日志文件夹(SQL SERVER日志进行收缩的图文教程)
- sqlserver恢复delete数据(SQL Server数据库的三种恢复模式:简单恢复模式、完整恢复模式和大容量日志恢)
- mysql 命令与sqlserver的区别大么(MySQL系列之执行SQL 语句时发生了什么?)
- sqlserver的图形表(SQL Server纵表与横表相互转换的方法)
- sqlserver2000升级教程(MSSQL 2000 使用帮助sql server简明教程)
- sqlserver替换脚本(SQL Server中对数据截取替换的方法详解)
- sql server查询操作怎么做(sqlserver分页查询处理方法小结)
- 大事件 合肥四中火了(大事件合肥四中火了)
- 翼龙贷组织出借人调研 感受鄱阳 借 来的致富路(翼龙贷组织出借人调研)
- 2023新国风戏曲教育寒假集训班汇报演出《戏娃闹元宵》图文报道(2023新国风戏曲教育寒假集训班汇报演出戏娃闹元宵图文报道)
- 九儿《狐踪谍影》出演热血女特警,戏份杀青受关注(九儿狐踪谍影出演热血女特警)
- 红色代表什么(红色代表什么寓意)
- 蓝天代表什么(蓝天代表什么生肖)
热门推荐
- docker节点不能启动(解决docker中ifconfig不可用的问题)
- react加载优化(React星星评分组件的实现)
- dede发布不了文章(dede中统计栏目文章数的2种实现方法)
- mybatissql解析(mybatis动态sql常用场景总结)
- CSS样式优化
- mysql常用的sql语句大全(mysql建表常用的sql语句汇总)
- 虚拟主机和云服务器有什么区别吗(云服务器和云虚拟主机两者的有什么区别?)
- ASP.NET中XML与DataSet的相互转换
- python端口扫描脚本测试(Python实现的IP端口扫描工具类示例)
- dedecms5.7能否用5.5的模板(dedecms 5.5 伪静态设置方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9