存到表内
declare @string varchar(1000)
set @string='aaaa,bbbb,cccc,dddd'
set @string='select * into ##tmp from (select '''+replace(@string,',','''as str union all select ''')+''') a' 
exec(@string)
select * from ##tmp
drop table ##tmp