欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MSSQL 实现Group内字段的拼接

程序员文章站 2024-03-21 20:59:52
...
--通过使用stuff 和For xml path 实现

例子:
select CreateBy,
STUFF((select ','+ CaseId from N_air_Case where CreateBy=A.CreateBy for xml path('')),1,1,'') 
 from N_Air_Case A group by CreateBy

例子中

CreateBy为分类的类别

CaseId为类别中需要拼接的字段

相关标签: MSSQL