分组串联字符串

create table tb
(id int,name varchar(100))
insert into tb
select 1,'aaa'
union select 1,'aac'
union select 1,'a3a'
union select 1,'ada'
union select 2,'aa'
union select 2,'a5aa'
union select 2,'aa5'
union select 2,'aafd'
union select 3,'aaafd'
union select 3,'aaafd'
union select 3,'aafdfd'

我想达到的功能是:
id   name
---  -----------------
1    a3a*aaa*aac*ada
2    a5aa*aa*aa5*aafd
3    aaafd*aafdfd

********************* 参考方法 **********************
create function test(@id int) returns varchar(1000)
as
begin
  declare @s varchar(1000)
  set @s = ''
  select @s = @s + [name] + '*'
  from tb where id = @id
  set @s = left(@s,len(@s) - 1)
  return(@s)
end
go
select distinct id, dbo.test(id)
from tb

posted @ 2006-10-19 18:15  tohen  阅读(414)  评论(0编辑  收藏  举报