select 列1,stuff((select ','+列2 from 表B where 列1=a.列1 for xml path('')),1,1,'')
from 表A a
------解决方案--------------------
------解决方案--------------------
SQL code
2000 也就 group by 然后 加个 函数
------解决方案-------------------- 2K 也就那么点方法。。
------解决方案--------------------
------解决方案-------------------- create function fun_test(@a int) returns varchar(100) as begin delcare @temp varchar(100) set @temp = '' select @temp = @temp + col1 from tb where col2=@a return @temp end