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为类别中需要拼接的字段
上一篇: 软件测试