日期:2014-05-17 浏览次数:20615 次
if OBJECT_ID('tempdb..#temp', 'u') is not null drop table #temp;
go
create table #temp( [字段1] varchar(100), [字段2] varchar(100));
insert #temp
select '001','张三' union all
select '002','李四' union all
select '003','小二' union all
select '004','小三'
--SQL:
SELECT STUFF((select ';' + [字段1] + ':' + [字段2] from #temp FOR XML PATH('')),1,1,'')
/*
001:张三;002:李四;003:小二;004:小三
*/