读书人

列装行后怎么将结果放入一个表里

发布时间: 2012-03-03 15:33:02 作者: rapoo

列装行后如何将结果放入一个表里
请教大侠们一个问题,像列装行的写法
select Ltyp,stuff((select ','+Lname from #SQltemp b where a.Ltyp=b.Ltyp order by Lname for xml path('')),1,1,'')
from #SQltemp a
group by Ltyp



如何把得到的结果,如何存入另一个表里

[解决办法]

SQL code
 insert into 另表  select Ltyp,  stuff((select ','+Lname from #SQltemp b where a.Ltyp=b.Ltyp order by Lname for xml path('')),1,1,'') from #SQltemp a group by Ltyp
[解决办法]
SQL code
insert into tbselect Ltyp,stuff((select ','+Lname from #SQltemp b where a.Ltyp=b.Ltyp order by Lname for xml path('')),1,1,'')from #SQltemp agroup by Ltyp--orselect Ltyp,stuff((select ','+Lname from #SQltemp b where a.Ltyp=b.Ltyp order by Lname for xml path('')),1,1,'')    into tbfrom #SQltemp agroup by Ltyp 

读书人网 >SQL Server

热点推荐