SQLServer 父子结构group汇总显示

需求:

SmCode PdtCode OrignBrand
A A1 null
B B1 A
C C1 A
D   D1 C
E E1 null
F F1 null
G G1 F

如上表格,A产生了B\C,C产生了D,所以A\B\C\D都属于一类,E单独,F\G一类

需要显示为:

SmCode SmCodeList PdtCodeList
A A,B,C,D A1,B1,C1,D1
E E E1
F F,G F1,G1

 

代码如下:

复制代码
alter proc P_SampePdtList as 
begin
delete from ZTR_CodeList;

select s.SmCode,d.Code,s.OriginBrand into #temp from DB_Product d,SM_SampleClothing s where d.SampleId=s.Id

select * into #temp1 from (
select * from #temp union
select distinct OriginBrand,null,null from #temp where OriginBrand is not null and OriginBrand not in (select SmCode from SM_SampleClothing)
) t;

with CTEGetChild as
(
select *,SmCode oid from #temp1 where OriginBrand is null
UNION ALL
(SELECT a.*,oid from #temp1 as a inner join
CTEGetChild as b on a.OriginBrand=b.SmCode
)
)
--insert into ZTR_CodeList
SELECT oid,stuff
(
    (
        select ','+SmCode from CTEGetChild t where oid=CTEGetChild.oid for xml path('')
    ),
    1, 
    1, 
    ''
) as SmCodeList,stuff
(
    (
        select ','+Code from CTEGetChild t where oid=CTEGetChild.oid for xml path('')
    ),
    1, 
    1, 
    ''
) as PdtCodeList,getdate() CreateTime  FROM CTEGetChild group by oid

end
复制代码

 

posted @   jackchain  阅读(415)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示