日期:2014-05-18  浏览次数:20495 次

SELECT变量多值赋值 举例说下
SELECT变量多值赋值 举例说下 
比如表 test 字段 sname,要把查询的sname的值负给变量@str

------解决方案--------------------
SQL code

create table #test(
name varchar(10)
)
go
insert #test
select 'tracy' union all
select 'lucy' union all
select 'kobe'
go

declare @str varchar(50)
set @str=''
select @str=@str+','+name from #test
select RIGHT(@str,LEN(@str)-1) as name

/*
name
tracy,lucy,kobe
*/