首页 > 数据库技术 > 详细

SQL多行合并成一行

时间:2014-12-31 17:56:28      阅读:305      评论:0      收藏:0      [点我收藏+]

with cte as(
select groupname,GroupId from Sys_Group where GroupId in(
select ReleaseRangeId from Sys_Notice_Permission where ReleaseRangeType=2 and NoticeId=20)
)

select LEFT(groupname,LEN(groupname)-1) as groupname,
LEFT(GroupId,LEN(GroupId)-1) as GroupId

from
(
SELECT (SELECT groupname+‘,‘ from cte FOR XML PATH(‘‘) ) as groupname,
(SELECT cast(GroupId as nvarchar)+‘,‘ from cte FOR XML PATH(‘‘) ) as GroupId

) A

SQL多行合并成一行

原文:http://www.cnblogs.com/smilekiss/p/4195936.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!