日期:2014-05-16 浏览次数:20554 次
create table a表(字段A varchar(10))
insert into a表(字段A)
select 'a,b'
create table b表(字段A varchar(10))
insert into b表(字段A)
select 'b' union all
select 'c'
select a.字段A+cast((select ','+b.字段A
from b表 b
where charindex(b.字段A,a.字段A,1)=0
for xml path('')) as varchar) '字段A'
from a表 a
/*
字段A
----------------------------------------
a,b,c
(1 row(s) affected)
*/