当前位置: 代码迷 >> Sql Server >> 列装行后怎么将结果放入一个表里
  详细解决方案

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

热度:115   发布时间:2016-04-27 19:15:48.0
列装行后如何将结果放入一个表里
请教大侠们一个问题,像列装行的写法
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
  相关解决方案