127.树形数据生成XML

博客围绕树形数据生成 XML 展开,重点涉及 SQL 语句相关内容,在信息技术领域,这有助于处理树形数据并将其转换为 XML 格式,可用于数据存储、传输等场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

--树形数据生成XML
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_xml_LR]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[f_xml_LR]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_xmlend_mark]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[f_xmlend_mark]
GO

/*--补充生成树形数据 xml 尾部标志

	配合生成 xml 完整版函数使用

*/
create function f_xmlend_mark(
@p_level int,	--上条记录的层次
@level int		--本条记录的层次
)returns nvarchar(800)
as
begin
	declare @r nvarchar(800)
	set @r=''
	while @p_level>@level
		select @p_level=@p_level-1
			,@r=@r+space(@p_level*4)+''
				+char(13)+char(10)
	return(@r)
end
go

/*--生成树形数据 xml 标志

	生成树形数据生成 xml 文档需要的必要标志
	采用格式化处理方法,生成的数据带有缩进表示

--邹建 2004.08(引用请保留此信息)--*/

create function f_xml_LR()
returns @re table(sid int identity,id varchar(10),level int,xml_L Nvarchar(1000),xml_R Nvarchar(1000))
as
begin
	--生成排序后的编号列表
	declare @t table(id varchar(10),level int,sid varchar(8000))

	declare @l int,@sid int
	set @l=1
	insert @t select [id],@l,id
	from [tb]
	where [pid]=0
	while @@rowcount>0
	begin
		set @l=@l+1
		insert @t select a.[id],@l,b.sid+','+a.[id]
		from [tb] a,@t b
		where a.[pid]=b.id and b.level=@l-1
	end

	insert @re(xml_L)
	select ''
	union all select ''

	insert @re(id,level,xml_L,xml_r)
	select a.id,a.level
		,space(a.level*4)+'1
		update @re set xml_R=xml_R+char(13)+char(10)+dbo.f_xmlend_mark(@l,1)
		where sid=@sid

	insert @re(xml_L) select ''

	return
end
go

--示例数据
create table [tb](id varchar(10),pid varchar(10),name varchar(20))
insert [tb] select '01',''  ,'中国'
union all select '02',''  ,'美国'
union all select '03',''  ,'加拿大'
union all select '04','01','北京'
union all select '05','01','上海'
union all select '06','01','江苏'
union all select '07','06','苏州'
union all select '08','07','常熟'
union all select '09','06','南京'
union all select '10','06','无锡'
union all select '11','02','纽约'
union all select '12','02','旧金山'
go

--调用生成xml树
select  re=case 
	when a.[id] is null 
	then b.xml_L
	else b.xml_L+' id="'+a.[id]+'" name="'+a.[name]+'"'	+b.xml_R
	end
from [tb] a 
	right join f_xml_LR() b on a.[id]=b.id
order by b.sid
go

--删除测试
drop table [tb]
--drop function f_xmlend_mark,f_xml_LR

/*--测试结果

re                                            
----------------------------------------------


    
        
        
        
            
                
            
            
            
        
    
    
        
        
    
    

--*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值