首页 > 代码库 > sql 字符串合并
sql 字符串合并
create table tb(id int, value varchar(10)) insert into tb values(1, ‘aa‘) insert into tb values(1, ‘bb‘) insert into tb values(2, ‘aaa‘) insert into tb values(2, ‘bbb‘) insert into tb values(2, ‘ccc‘) go -- 方法一: -- 1. 创建Function create function dbo.f_str(@id varchar(10)) returns varchar(1000) as begin declare @str varchar(1000) select @str = isnull(@str + ‘,‘ , ‘‘) + cast(value as varchar) from tb where id = @id return @str end go -- 2. 调用Function select id , value = http://www.mamicode.com/dbo.f_str(id) from tb group by id drop function dbo.f_str -- 方法二: select id, [value] = stuff((select ‘,‘ + [value] from tb t where id = tb.id for xml path(‘‘)) , 1 , 1 , ‘‘) from tb group by id drop table tb
sql 字符串合并
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。